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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
}

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

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

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

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

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

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

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

.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-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-asymmetric {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary-color);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

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

.story-container {
    max-width: 740px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.story-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    object-fit: cover;
    background-color: #dbeafe;
}

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

.services-visual {
    flex: 1;
    background-color: #f3f4f6;
}

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

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

.services-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.link-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.link-cta:after {
    content: " →";
    margin-left: 8px;
}

.link-cta:hover {
    color: var(--secondary-color);
}

.testimonials-cards {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.testimonials-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

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

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

.form-container {
    max-width: 680px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

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

.approach-content {
    flex: 1;
    padding: 80px 48px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.phase-item {
    margin-bottom: 36px;
}

.phase-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.phase-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    background-color: #f3f4f6;
}

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

.cta-final {
    background-color: var(--primary-color);
    padding: 80px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-reject {
    background-color: #4b5563;
    color: white;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

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

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

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.about-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 48px;
}

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dbeafe;
}

.contact-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.legal-page .last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-split,
    .services-split,
    .approach-split {
        flex-direction: column;
    }

    .hero-visual,
    .services-visual,
    .approach-visual {
        min-height: 300px;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .intro-text h2,
    .services-content h2,
    .approach-content h2,
    .testimonials-cards h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }
}