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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fbbf24;
}

.navbar-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #1e40af;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8fafc;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.hero-image {
    flex: 1;
    background: #e2e8f0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefits-asymmetric {
    padding: 120px 0;
    background: #ffffff;
}

.benefit-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    padding: 0 64px;
}

.benefit-block.offset-left {
    padding-left: 120px;
}

.benefit-block.offset-right {
    flex-direction: row-reverse;
    padding-right: 120px;
}

.benefit-block img {
    width: 500px;
    height: 380px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #e2e8f0;
}

.benefit-text {
    flex: 1;
}

.benefit-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.benefit-text p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 64px;
    background: #f1f5f9;
}

.services-grid h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1e293b;
}

.service-cards-container {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    background: #e2e8f0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0 24px 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 24px 20px;
}

.btn-service {
    display: block;
    background: #1e40af;
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    margin: 0 24px 24px;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #1e3a8a;
}

.testimonial-inline {
    padding: 80px 120px;
    background: linear-gradient(135deg, #312e81 0%, #4c1d95 100%);
}

.testimonial-inline blockquote {
    font-size: 28px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    text-align: center;
}

.testimonial-inline cite {
    display: block;
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    color: #c7d2fe;
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-intro {
    flex: 1;
    background: #0f172a;
    color: #ffffff;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.form-intro p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 80px 64px;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    background: #1e40af;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.footer-split {
    background: #0f172a;
    color: #cbd5e1;
    padding: 64px 64px 32px;
}

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

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

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

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

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

.disclaimer-text {
    font-size: 13px;
    color: #64748b;
    max-width: 800px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 24px 32px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #1e40af;
    color: #ffffff;
}

.btn-reject {
    background: #475569;
    color: #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.thanks-container {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 32px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 20px;
    color: #475569;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-home {
    display: inline-block;
    background: #1e40af;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-home:hover {
    background: #1e3a8a;
}

.about-hero {
    padding: 100px 64px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.about-content {
    display: flex;
    padding: 100px 64px;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-text p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #e2e8f0;
}

.values-section {
    padding: 100px 64px;
    background: #f1f5f9;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1e293b;
}

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

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.services-list {
    padding: 100px 64px;
    background: #ffffff;
}

.services-list h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1e293b;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    background: #f8fafc;
    border-radius: 12px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-info p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    color: #475569;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-img {
    width: 400px;
    height: 300px;
    border-radius: 8px;
    background: #e2e8f0;
}

.contact-page {
    padding: 100px 64px;
}

.contact-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1e293b;
    text-align: center;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.legal-page {
    padding: 100px 64px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1e293b;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

@media (max-width: 768px) {
    .hero-split,
    .form-section-split,
    .benefit-block,
    .about-content,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-block.offset-left,
    .benefit-block.offset-right {
        padding-left: 32px;
        padding-right: 32px;
    }

    .benefit-block img,
    .service-img,
    .about-image img {
        width: 100%;
    }

    .navbar-split {
        padding: 16px 24px;
    }

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .service-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }
}