* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    font-style: italic;
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    margin-top: 100px;
    position: relative;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: #f5f5f5;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 80px 40px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.98);
    margin-top: 120px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-offset p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #444;
}

.cta-primary {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.trust-strip {
    padding: 60px 40px;
    background-color: #1a1a1a;
    color: white;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 16px;
    color: #ccc;
}

.intro-asymmetric {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-content-left {
    flex: 1.2;
}

.intro-content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.intro-image-right {
    flex: 1;
    background-color: #f5f5f5;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-featured {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 10%;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 350px;
}

.service-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #333;
    transform: translateX(4px);
}

.form-section-offset {
    padding: 120px 60px;
    background-color: white;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto 0 15%;
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.why-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: white;
}

.why-content-stacked {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.why-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.why-item {
    flex: 1;
    min-width: 280px;
}

.why-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #4CAF50;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.cta-scattered {
    padding: 100px 60px;
    background-color: white;
}

.cta-box-left {
    max-width: 500px;
    margin-left: 20%;
    padding: 50px;
    background-color: #f9f9f9;
    border-left: 6px solid #4CAF50;
}

.cta-box-left h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-box-left p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #666;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #333;
    transform: translateX(4px);
}

.footer-asymmetric {
    background-color: #0a0a0a;
    color: white;
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: #999;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #4CAF50;
}

.footer-links a,
.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.disclaimer {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 12px;
    line-height: 1.6;
    font-style: italic;
}

.thanks-container {
    max-width: 700px;
    margin: 150px auto;
    padding: 60px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.thanks-container .service-reference {
    font-weight: 700;
    color: #1a1a1a;
}

.content-page {
    max-width: 900px;
    margin: 150px auto 80px;
    padding: 0 40px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.content-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #444;
}

.contact-layout {
    display: flex;
    max-width: 1200px;
    margin: 150px auto 80px;
    padding: 0 60px;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #666;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-image {
    flex: 1;
    background-color: #f5f5f5;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-hero {
    max-width: 1000px;
    margin: 150px auto 60px;
    padding: 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 60px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.about-image {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 60px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-text-offset {
        margin: 0;
        max-width: 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .ad-disclosure {
        order: 3;
        text-align: center;
    }

    .hero-text-offset h1 {
        font-size: 36px;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        margin: 0 auto;
        padding: 40px 30px;
    }

    .cta-box-left {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}