* {
    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: #1a1a1a;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

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

.nav a {
    font-size: 15px;
    color: #475569;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0f172a;
}

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

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

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

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #cbd5e1;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #2563eb;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

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

.intro-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #0f172a;
}

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

.services-preview {
    padding: 120px 0;
    background-color: #f8fafc;
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-header-left p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    min-height: 400px;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0f172a;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    margin-top: 16px;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.trust-section {
    padding: 100px 0;
    background-color: #0f172a;
    color: #ffffff;
}

.trust-content-offset {
    max-width: 800px;
    padding-left: 100px;
}

.trust-content-offset h2 {
    font-size: 38px;
    margin-bottom: 28px;
    line-height: 1.3;
}

.trust-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.form-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.form-wrapper-split {
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-list li {
    font-size: 16px;
    color: #475569;
    padding-left: 28px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: #f8fafc;
    padding: 48px;
    border-radius: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

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

.btn-submit:hover {
    background-color: #2563eb;
}

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

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    padding: 24px;
    background-color: #ffffff;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #3b82f6;
    color: #ffffff;
}

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f172a;
}

.page-hero p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    background-color: #0f172a;
    color: #ffffff;
}

.service-detail-header h2 {
    font-size: 32px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
}

.service-detail-content {
    padding: 0;
}

.service-detail-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-text {
    padding: 48px 40px;
}

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

.service-text h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #0f172a;
}

.service-text ul {
    list-style: disc;
    padding-left: 24px;
}

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

.cta-section {
    padding: 100px 0;
    background-color: #0f172a;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero {
    padding: 120px 0 80px;
    background-color: #f8fafc;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
    color: #0f172a;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #0f172a;
}

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

.about-image-section {
    padding: 0;
    background-color: #ffffff;
}

.about-image-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0f172a;
}

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

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #0f172a;
}

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

.values-section {
    padding: 100px 0;
    background-color: #0f172a;
    color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
}

.values-split {
    display: flex;
    gap: 60px;
}

.value-block {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.value-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
}

.contact-hero {
    padding: 100px 0 60px;
    background-color: #f8fafc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f172a;
}

.contact-hero p {
    font-size: 18px;
    color: #64748b;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #0f172a;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

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

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.contact-map p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-disclaimer {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-disclaimer h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0f172a;
}

.contact-disclaimer p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.thanks-section {
    padding: 120px 0;
    background-color: #ffffff;
    min-height: 600px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 48px;
    padding: 24px;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 16px;
    color: #0f172a;
}

.thanks-content h2 {
    font-size: 32px;
    margin: 48px 0 32px;
    color: #0f172a;
}

.next-steps {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.step {
    flex: 1;
    padding: 32px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #0f172a;
}

.legal-page h2 {
    font-size: 28px;
    margin: 48px 0 16px;
    color: #0f172a;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: #0f172a;
}

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

.legal-page ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

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

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

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

    .form-wrapper-split {
        flex-direction: column;
        gap: 48px;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

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

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

    .values-split {
        flex-direction: column;
        gap: 32px;
    }

    .next-steps {
        flex-direction: column;
    }
}

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

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

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

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

    .service-content {
        padding: 40px 30px;
    }

    .nav {
        gap: 16px;
    }

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

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