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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #3b82f6;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-color: #e0e7ff;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.visual-block {
    flex: 1;
    background-color: #dbeafe;
}

.visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.value-proposition {
    background-color: var(--bg-white);
}

.services-preview {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

.section-intro-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-intro-centered p {
    font-size: 19px;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0 24px 12px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 24px 24px;
}

.approach-split {
    background-color: var(--bg-white);
}

.testimonials {
    background-color: #eff6ff;
    padding: 100px 24px;
}

.testimonial-container {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.testimonial .quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial .author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.form-block {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-white);
    border-radius: 8px;
    margin: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 24px 24px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.7;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background-color: var(--bg-light);
    padding: 100px 24px 80px;
}

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

.hero-content-centered h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content-centered p {
    font-size: 20px;
    color: var(--text-medium);
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background-color: var(--bg-light);
}

.benefits-list {
    list-style: none;
    margin: 24px 0;
}

.benefits-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-medium);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.cta-full {
    background-color: var(--primary-color);
    padding: 100px 24px;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 16px;
}

.cta-content-centered p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-full .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-full .cta-primary:hover {
    background-color: var(--bg-light);
}

.about-intro,
.philosophy,
.experience-section {
    padding: 80px 0;
}

.philosophy {
    background-color: var(--bg-light);
}

.team-section {
    background-color: var(--bg-white);
    padding: 100px 24px;
}

.team-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member .role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.values-section {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

.values-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-main {
    padding: 80px 0;
}

.contact-info-block {
    margin-top: 32px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.location-section {
    background-color: var(--bg-light);
    padding: 80px 24px;
}

.faq-section {
    padding: 100px 24px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

.thanks-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.email-text {
    font-weight: 600;
    color: var(--text-dark);
}

.service-confirmation {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.thanks-visual {
    flex: 1;
    max-width: 500px;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
}

.next-steps {
    padding: 100px 24px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.legal-page {
    padding: 60px 24px 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-container ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-dark);
}

.legal-date {
    margin-top: 48px;
    font-style: italic;
    color: var(--text-light);
    font-size: 15px;
}

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

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

    .nav-menu {
        gap: 20px;
    }

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

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

    .testimonial-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-container {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}