* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 60px 5%;
    position: relative;
    align-items: center;
    background: #fafbfc;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #1a252f;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.intro-narrow {
    padding: 100px 5%;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

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

.intro-wrapper p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background: #f7fafc;
}

.insight-left {
    flex: 1;
}

.insight-left img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.insight-right {
    flex: 1;
    padding-left: 20px;
}

.insight-right h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-inline:hover {
    background: #2c3e50;
    color: #ffffff;
}

.services-cards {
    padding: 100px 5%;
    background: #ffffff;
}

.services-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.services-header-center p {
    font-size: 18px;
    color: #4a5568;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #4a5568;
    line-height: 1.5;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 20px 20px;
}

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

.select-service:hover {
    background: #1a252f;
}

.form-section {
    padding: 100px 5%;
    background: #f7fafc;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 10%;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container-offset p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #e2e8f0;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-block {
    padding: 80px 5%;
    background: #2c3e50;
    color: #ffffff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-main {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 5% 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

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

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

.disclaimer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #2c3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1a252f;
}

.cookie-btn.reject {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cookie-btn.reject:hover {
    background: #f7fafc;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
}

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

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-content .service-selected {
    display: inline-block;
    margin: 30px 0;
    padding: 20px 30px;
    background: #f7fafc;
    border-radius: 6px;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-info {
    padding: 80px 5%;
    background: #ffffff;
}

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

.contact-left {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.about-hero {
    padding: 100px 5%;
    background: #f7fafc;
    text-align: center;
}

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

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.about-content img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.services-detail {
    padding: 80px 5%;
    background: #ffffff;
}

.services-detail h1 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.service-detail-item {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f7fafc;
    border-radius: 8px;
}

.service-detail-item h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-item p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

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

    .hero-content-offset {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-overlap {
        margin-top: 0;
    }

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

    .cards-asymmetric {
        flex-direction: column;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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