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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-offset {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    padding: 80px 5% 60px 5%;
    position: relative;
    background-color: #ffffff;
}

.hero-text-block {
    flex: 1 1 450px;
    padding-right: 60px;
    margin-top: 40px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image-offset {
    flex: 1 1 450px;
    position: relative;
    margin-left: -40px;
    margin-top: -20px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 5% 80px 5%;
    background-color: #ecf0f1;
    position: relative;
}

.intro-left {
    flex: 1 1 400px;
    padding-right: 40px;
    background-color: #ffffff;
}

.intro-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.intro-right-offset {
    flex: 1 1 450px;
    padding: 50px 40px;
    margin-top: 60px;
    margin-left: -60px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.intro-right-offset h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-right-offset p {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
}

.services-scattered {
    padding: 80px 5% 100px 5%;
    background-color: #ffffff;
}

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

.services-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.offset-1 {
    margin-top: 20px;
}

.service-card.offset-2 {
    margin-top: -10px;
}

.service-card.offset-3 {
    margin-top: 35px;
}

.service-card.offset-4 {
    margin-top: -15px;
}

.service-card.offset-5 {
    margin-top: 25px;
}

.service-card.offset-6 {
    margin-top: 10px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 20px 10px 20px;
}

.service-card p {
    color: #666;
    margin: 0 20px 15px 20px;
    font-size: 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-section-offset {
    padding: 80px 5%;
    background-color: #ecf0f1;
}

.form-container-asymmetric {
    max-width: 650px;
    margin-left: 10%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.selected-service-display,
.selected-price-display {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.form-group-offset {
    margin-bottom: 25px;
    margin-left: 20px;
}

.form-group-offset label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group-offset input,
.form-group-offset textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group-offset input:focus,
.form-group-offset textarea:focus {
    outline: none;
    border-color: #3498db;
}

.cta-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.cta-submit:hover {
    background-color: #229954;
}

.trust-offset {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 5% 80px 5%;
    background-color: #ffffff;
    gap: 60px;
}

.trust-content {
    flex: 1 1 450px;
    padding-right: 30px;
}

.trust-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.trust-item {
    padding: 15px 20px;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
    font-size: 16px;
    color: #2c3e50;
}

.trust-image {
    flex: 1 1 400px;
    margin-top: -40px;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px 5%;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 500px;
    color: #ecf0f1;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.about-hero-offset {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5% 60px 5%;
    gap: 50px;
    background-color: #ffffff;
}

.about-text-primary {
    flex: 1 1 500px;
    padding-right: 30px;
}

.about-text-primary h1 {
    font-size: 46px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-text-primary p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-image-primary {
    flex: 1 1 400px;
    margin-top: 30px;
}

.about-image-primary img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.about-content-scattered {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    background-color: #ecf0f1;
    gap: 50px;
}

.about-block {
    flex: 1 1 400px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.about-block.block-1 {
    margin-top: 20px;
}

.about-block.block-2 {
    flex: 1 1 350px;
    padding: 0;
    margin-top: -30px;
}

.about-block.block-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e0e0e0;
}

.about-block.block-3 {
    margin-top: 40px;
}

.about-block.block-4 {
    flex: 1 1 100%;
    margin-top: 10px;
}

.about-block h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-block p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-list-offset {
    list-style: none;
    margin-left: 20px;
}

.feature-list-offset li {
    padding: 12px 0;
    padding-left: 25px;
    color: #2c3e50;
    position: relative;
    font-size: 16px;
}

.feature-list-offset li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.mission-offset {
    padding: 80px 5%;
    background-color: #ffffff;
}

.mission-content {
    max-width: 900px;
    margin-left: 10%;
}

.mission-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

.services-page-hero {
    padding: 80px 5% 50px 5%;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.service-detail-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    gap: 50px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-detail-block.offset-right {
    margin-left: 5%;
}

.service-detail-block.offset-left {
    margin-right: 5%;
}

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-includes {
    margin-top: 30px;
    padding: 25px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.service-includes h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-includes ul {
    list-style: none;
    margin-left: 10px;
}

.service-includes ul li {
    padding: 8px 0;
    padding-left: 25px;
    color: #2c3e50;
    position: relative;
    font-size: 15px;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-image {
    flex: 1 1 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.cta-services {
    padding: 60px 5%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

.contact-hero {
    padding: 80px 5% 50px 5%;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
}

.contact-info-offset {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    gap: 60px;
    background-color: #f8f9fa;
}

.contact-block.primary-block {
    flex: 1 1 450px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-block.primary-block h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-block.secondary-block {
    flex: 1 1 400px;
    margin-top: 40px;
}

.contact-block.secondary-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.contact-note {
    padding: 60px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

.contact-note h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-note p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    padding: 80px 5%;
    background-color: #f8f9fa;
    min-height: 500px;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.thanks-next h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1 1 250px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.step-item h3 {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    color: #555;
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.legal-page h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.inline-link {
    color: #3498db;
    word-break: break-all;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-image-offset {
        margin-left: 0;
        margin-top: 30px;
    }

    .intro-right-offset {
        margin-left: 0;
        margin-top: 30px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-card {
        margin-top: 0 !important;
    }

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

    .form-group-offset {
        margin-left: 0;
    }

    .trust-image {
        margin-top: 0;
    }

    .mission-content {
        margin-left: 0;
    }

    .service-detail-block {
        padding: 30px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .legal-content {
        padding: 40px 25px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}