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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ffd662;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.container.narrow {
    max-width: 800px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.insight-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.insight-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: var(--bg-white);
}

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

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-showcase {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-showcase h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-block.reverse {
    flex-direction: row-reverse;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.service-visual {
    flex: 0 0 400px;
    background-color: var(--bg-white);
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.service-info {
    flex: 1;
}

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

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

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

.service-select {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: var(--primary-color);
}

.trust-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--bg-white);
}

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

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
}

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

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

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

.main-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.benefits-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.benefits-columns {
    display: flex;
    gap: 40px;
}

.benefit-item {
    flex: 1;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--bg-white);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-references {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-references p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
}

.footer-references a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

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

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: var(--bg-white);
    flex: 1;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

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

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

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

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

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

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.values-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.value-block {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

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

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

.experience-item {
    flex: 1;
}

.experience-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.experience-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.experience-item p {
    font-size: 16px;
    color: var(--text-light);
}

.team-approach {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.team-approach p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

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

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

.services-detailed {
    padding: 80px 0;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-dark);
}

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

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 0 0 450px;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-section {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 35px;
}

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

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image-section {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.contact-info-extra {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-info-extra p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

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

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

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

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

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

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

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

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

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

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .insight-grid,
    .about-grid,
    .contact-layout {
        flex-direction: column;
    }

    .service-block,
    .service-block.reverse,
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .service-visual,
    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .testimonials-grid,
    .benefits-columns,
    .experience-grid,
    .footer-grid {
        flex-direction: column;
    }

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