* {
    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: #2c3e50;
    display: flex;
    background-color: #fafafa;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: #1a2332;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.nav-disclosure {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.4;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a2332;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #e8f0f2;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.intro-section {
    display: flex;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #f1f5f9;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a2332;
}

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

.services-section {
    padding: 100px 60px;
    background-color: #f8fafc;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #1e293b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #334155;
}

.cta-section {
    display: flex;
    background-color: #fff;
}

.cta-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #1e293b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
}

.cta-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8fafc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 16px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

.benefits-section {
    padding: 100px 60px;
    background-color: #fff;
}

.benefits-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.benefit-item p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px;
    background-color: #fef3c7;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background-color: #1a2332;
    color: #cbd5e1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer p {
    font-size: 15px;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 280px;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 24px 60px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin-right: 30px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2563eb;
    color: #fff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.btn-reject:hover {
    background-color: #334155;
    color: #fff;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #fff;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a2332;
}

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

.thanks-content .service-selected {
    font-weight: 600;
    color: #2563eb;
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 220px;
        padding: 30px 20px;
    }

    .main-content {
        margin-left: 220px;
    }

    .cookie-banner {
        left: 220px;
    }

    .hero-split,
    .intro-section,
    .cta-section {
        flex-direction: column;
    }

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

    .benefits-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

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

    .cookie-banner {
        left: 0;
    }

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

    .services-section h2,
    .benefits-section h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
    }
}