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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.65;
    color: #1a1a1a;
    background-color: #f9f9f9;
    padding-left: 220px;
}

.ad-disclosure-top {
    position: fixed;
    top: 0;
    left: 220px;
    right: 0;
    background-color: #2d3436;
    color: #dfe6e9;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    z-index: 900;
    border-bottom: 1px solid #636e72;
}

.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background-color: #1a1a1a;
    padding: 40px 25px;
    z-index: 1000;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #74b9ff;
    margin-bottom: 60px;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 18px;
}

.nav-menu a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #74b9ff;
}

.main-content {
    margin-top: 40px;
    background-color: #ffffff;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    padding: 80px 60px;
    background-color: #fff;
    align-items: center;
    gap: 40px;
}

.hero-text-block {
    flex: 1;
    max-width: 540px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #2d3436;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: #636e72;
    line-height: 1.7;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 120px;
    width: 50%;
    max-width: 600px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.15);
    background-color: #dfe6e9;
}

.intro-overlap {
    position: relative;
    padding: 100px 60px 80px 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.intro-box {
    flex: 1.5;
    max-width: 680px;
}

.intro-box h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 22px;
    line-height: 1.3;
}

.intro-box p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.cta-inline {
    display: inline-block;
    background-color: #0984e3;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.cta-inline:hover {
    background-color: #0770c7;
    transform: translateX(5px);
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
}

.stat-card {
    background-color: #fff;
    padding: 30px 25px;
    border-left: 5px solid #00b894;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: #636e72;
}

.services-offset {
    padding: 100px 60px;
    background-color: #fafafa;
}

.section-title-left {
    font-size: 44px;
    color: #2d3436;
    margin-bottom: 60px;
    max-width: 600px;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    max-width: 500px;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background-color: #e0e0e0;
}

.service-info {
    flex: 1;
    max-width: 520px;
}

.service-info h3 {
    font-size: 28px;
    color: #2d3436;
    margin-bottom: 16px;
}

.service-info p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2d3436;
    color: #fff;
    border: none;
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.testimonial-scattered {
    padding: 100px 60px;
    background-color: #fff;
    display: flex;
    gap: 60px;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
}

.testimonial-left {
    padding-top: 50px;
}

.testimonial-right {
    padding-bottom: 50px;
}

blockquote {
    border-left: 4px solid #74b9ff;
    padding-left: 25px;
    margin: 0;
}

blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

cite {
    font-style: normal;
    font-size: 15px;
    color: #95a5a6;
}

.form-section-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-container {
    flex: 1.2;
    max-width: 580px;
}

.form-container h2 {
    font-size: 40px;
    color: #2d3436;
    margin-bottom: 18px;
}

.form-container > p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 35px;
}

.main-form {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0984e3;
}

.form-row input[readonly] {
    background-color: #f1f3f5;
    color: #868e96;
}

.btn-submit-form {
    width: 100%;
    background-color: #d63031;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    background-color: #b92525;
    transform: translateY(-2px);
}

.form-side-image {
    flex: 1;
    max-width: 450px;
    margin-top: 80px;
}

.form-side-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: #dee2e6;
}

.why-us-grid {
    padding: 90px 60px;
    background-color: #fff;
}

.why-us-grid h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 50px;
    text-align: center;
}

.reasons-layout {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.reason-item h4 {
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 14px;
}

.reason-item p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
}

.disclaimer-block {
    padding: 50px 60px;
    background-color: #fff3cd;
    border-top: 4px solid #ffc107;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer-main {
    background-color: #2d3436;
    color: #dfe6e9;
    padding: 60px 60px 30px 60px;
}

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

.footer-about,
.footer-nav,
.footer-legal {
    flex: 1;
    min-width: 200px;
}

.footer-grid h4 {
    font-size: 18px;
    color: #74b9ff;
    margin-bottom: 18px;
}

.footer-about p {
    color: #b2bec3;
    font-size: 14px;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #74b9ff;
}

.footer-copyright {
    border-top: 1px solid #636e72;
    padding-top: 25px;
    text-align: center;
}

.footer-copyright p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 220px;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-modal-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #dfe6e9;
}

.cookie-modal-content a {
    color: #74b9ff;
}

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

.cookie-accept,
.cookie-reject {
    padding: 11px 26px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #00b894;
    color: #fff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #dfe6e9;
    border: 1px solid #dfe6e9;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 60px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: #00b894;
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 15px;
    max-width: 600px;
}

.btn-home {
    display: inline-block;
    background-color: #0984e3;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s;
}

.btn-home:hover {
    background-color: #0770c7;
}

@media (max-width: 1200px) {
    .hero-image-offset {
        width: 45%;
        top: 150px;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .service-visual,
    .service-info {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    body {
        padding-left: 0;
        padding-top: 60px;
    }

    .ad-disclosure-top {
        left: 0;
    }

    .side-nav {
        width: 100%;
        height: 60px;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        margin-bottom: 0;
        font-size: 22px;
    }

    .nav-menu {
        display: flex;
        gap: 20px;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

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

    .hero-image-offset {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: 0;
        right: 0;
    }

    .intro-overlap,
    .form-section-offset,
    .testimonial-scattered {
        flex-direction: column;
        padding: 60px 30px;
    }

    .services-offset,
    .why-us-grid,
    .disclaimer-block,
    .footer-main {
        padding: 60px 30px;
    }

    .section-title-left {
        font-size: 32px;
    }

    .cookie-modal {
        left: 0;
        padding: 20px;
    }
}