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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background: #3498db;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #2980b9;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    margin-left: 16px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

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

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-right h2,
.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.content-right p,
.content-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.insight-block {
    padding: 80px 0;
    background: #f8fafc;
}

.insight-block h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

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

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a202c;
    font-weight: 600;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    padding: 12px 24px 24px;
}

.form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.form-section > div > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 36px;
}

.inquiry-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.trust-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
}

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px 0;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
}

.page-hero {
    padding: 80px 0 60px;
    background: #f8fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: #4a5568;
}

.content-section {
    padding: 80px 0;
    background: #ffffff;
}

.philosophy-section {
    padding: 80px 0;
    background: #f8fafc;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

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

.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

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

.services-detail {
    padding: 60px 0;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.disclaimer-section {
    padding: 60px 0;
    background: #ffffff;
}

.disclaimer-text {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
    padding: 24px;
    background: #f8fafc;
    border-left: 4px solid #cbd5e0;
    border-radius: 4px;
}

.contact-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.contact-info > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.location-section {
    padding: 80px 0;
    background: #f8fafc;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
    background: #f8fafc;
}

.thanks-section h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-section > div > p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 17px;
    color: #4a5568;
}

.next-steps {
    margin-bottom: 48px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    text-align: left;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

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

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

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

.updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a202c;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #2d3748;
    font-weight: 600;
}

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

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

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

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

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .nav-links {
        gap: 16px;
    }

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

    .ad-notice {
        display: none;
    }

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

    .service-card {
        max-width: 100%;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

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

    .thanks-section h1 {
        font-size: 36px;
    }
}