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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #f4a460;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #dfe6e9;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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(--white);
}

img {
    object-fit: cover;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
}

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

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

.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    background-color: #e8f3f1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,95,79,0.85) 0%, rgba(44,95,79,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

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

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 400px;
    }

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

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

section {
    padding: 60px 0;
}

h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.intro-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

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

.problem-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-image {
    width: 100%;
    height: 280px;
}

.problem-image img {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    padding: 25px 25px 15px;
}

.problem-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    margin-bottom: 25px;
}

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

.insight-image {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
}

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

    .insight-image {
        width: 100%;
        height: 400px;
    }
}

.trust-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.trust-item h3 {
    margin-bottom: 15px;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.services-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 250px;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

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

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

.btn-select {
    width: 100%;
    padding: 12px 24px;
    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: #234838;
}

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

.form-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    margin-bottom: 15px;
}

.form-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer-box {
    background-color: #fff3e0;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.disclaimer-box h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disclaimer-box p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 14px;
}

.references-section {
    background-color: var(--white);
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
}

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

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

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

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #b2bec3;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-col a {
    color: #b2bec3;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 52, 54, 0.98);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 20px;
}

.cookie-content p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

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

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

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

.about-content {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 25px;
}

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

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

    .about-image {
        width: 100%;
        height: 400px;
    }
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    margin-bottom: 25px;
}

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

.mission-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .mission-content {
        flex-direction: column-reverse;
    }

    .mission-image {
        width: 100%;
        height: 350px;
    }
}

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

.approach-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 230px;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.approach-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.approach-item h3 {
    margin-bottom: 12px;
}

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

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

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

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

.cta-card {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-card h2 {
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234838;
    color: var(--white);
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.service-detail-card {
    margin-bottom: 50px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-detail-layout {
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

@media (max-width: 968px) {
    .service-detail-layout,
    .service-detail-layout.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 300px;
    }

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

.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

    .map-placeholder {
        min-height: 350px;
    }
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-info h3 {
    margin-bottom: 15px;
}

.thanks-info ul {
    padding-left: 25px;
}

.thanks-info li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.thanks-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.thanks-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-item h3 {
    margin-bottom: 15px;
}

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

.thanks-item a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }

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

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

    .legal-page h2 {
        font-size: 24px;
    }

    .legal-page h3 {
        font-size: 20px;
    }
}