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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba8;
    --accent-color: #f4a261;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: var(--gray);
    padding: 4px 12px;
    background-color: var(--light-gray);
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #e89550;
    transform: translateY(-2px);
}

.story-intro {
    padding: 80px 20px;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

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

.problem-section {
    padding: 80px 20px;
}

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

.text-block {
    flex: 1;
}

.text-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.image-block {
    flex: 1;
    background-color: var(--light-gray);
}

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

.insight-section {
    padding: 80px 20px;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.insight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.insight-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 25px);
    min-width: 250px;
    max-width: 400px;
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 16px;
    color: var(--gray);
}

.services-preview {
    padding: 80px 20px;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--light-gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(255,255,255,0.95);
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    background-color: var(--light-gray);
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 12px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 20px 12px;
    font-size: 15px;
    color: var(--dark-color);
}

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

.btn-select {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: var(--secondary-color);
}

.trust-section {
    padding: 80px 20px;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    font-size: 17px;
    position: relative;
}

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

.testimonials {
    padding: 80px 20px;
}

.testimonials h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 50px 20px;
}

.disclaimer-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    text-align: center;
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--light-gray);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

.about-story,
.about-approach,
.about-team,
.about-values,
.about-cta {
    padding: 60px 20px;
}

.about-story h2,
.about-team h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-story p,
.about-team p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.value-card {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 25px);
    min-width: 250px;
    max-width: 400px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: var(--light-gray);
}

.about-cta {
    text-align: center;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e89550;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 60px 20px;
}

.service-full {
    padding: 60px 0;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-full:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
}

.service-image-large {
    flex: 1;
    background-color: var(--light-gray);
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-duration {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.service-info > p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-includes li {
    padding: 8px 0 8px 30px;
    font-size: 15px;
    position: relative;
}

.service-includes li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.services-cta {
    padding: 60px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.contact-content {
    padding: 60px 20px;
}

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

.contact-info,
.contact-map {
    flex: 1 1 400px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
}

.map-placeholder {
    background-color: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-faq {
    padding: 60px 20px;
}

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
}

.thanks-hero {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
}

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

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray);
}

.thanks-details {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-next {
    margin: 40px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    list-style: decimal;
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta p {
    font-size: 16px;
    margin-bottom: 20px;
}

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin: 35px 0 15px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--secondary-color);
}

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

.legal-page ul {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 15px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .ad-disclosure {
        margin: 10px 0;
        order: -1;
    }

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

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .service-full {
        flex-direction: column;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

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

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

    .story-intro h2,
    .about-cta h2,
    .services-cta h2 {
        font-size: 26px;
    }
}