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

:root {
    --primary-color: #2d5a3f;
    --secondary-color: #7ba05b;
    --accent-color: #e8a658;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --error-color: #d64545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 63, 0.85) 0%, rgba(123, 160, 91, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--bg-white);
    max-width: 900px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    color: var(--bg-light);
    max-width: 700px;
}

.story-intro {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

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

.opening-line {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.narrow-content a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.narrow-content a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.problem-amplification {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

.split-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.insight-section {
    padding: 90px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.centered-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

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

.trust-building {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.asymmetric-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.trust-content {
    flex: 1.2;
    padding-top: 40px;
}

.trust-content h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 18px;
    margin-top: 32px;
}

.trust-content h3:first-of-type {
    margin-top: 0;
}

.trust-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-image {
    flex: 0.8;
    background-color: var(--bg-light);
}

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

.testimonials-inline {
    padding: 80px 40px;
    background-color: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    background-color: var(--bg-white);
    padding: 32px;
    border-left: 4px solid var(--accent-color);
}

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

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

.benefits-reveal {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.stacked-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.stacked-benefits h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-item img {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

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

.services-pricing .centered-block {
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 340px;
    max-width: 400px;
    background-color: var(--bg-white);
    padding: 36px;
    border-top: 3px solid var(--secondary-color);
}

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

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

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

.cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-btn:hover {
    background-color: #d89543;
}

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

.cta-block h2 {
    font-size: 40px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 18px;
    color: var(--bg-light);
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 70px 40px;
    background-color: var(--bg-light);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

.disclaimer-box h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 14px;
}

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

.references-section {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.references-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1 1 220px;
}

.footer-column h4 {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: var(--bg-light);
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 40px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 30px;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.85;
}

.page-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.contact-main {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.contact-info-block,
.contact-details {
    flex: 1;
}

.contact-info-block h2,
.contact-details h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

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

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

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-topics {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-light);
}

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

.contact-topics ul {
    list-style: disc;
    padding-left: 20px;
}

.contact-topics li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-note {
    margin-top: 28px;
    padding: 18px;
    background-color: #fff8e5;
    border-left: 3px solid var(--accent-color);
}

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

.thanks-hero {
    padding: 100px 40px;
    min-height: 600px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
}

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

.thanks-main {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 20px;
    margin-bottom: 40px;
    border-left: 3px solid var(--accent-color);
}

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

.thanks-info {
    margin-top: 50px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.step {
    flex: 1 1 250px;
    max-width: 320px;
    background-color: var(--bg-white);
    padding: 24px;
    text-align: left;
}

.step h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.85;
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

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

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

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

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

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

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

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

.about-story {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

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

.values-section .split-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 24px;
}

.values-section .split-content h3:first-of-type {
    margin-top: 0;
}

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

.team-section .centered-block {
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1 1 260px;
    max-width: 300px;
    padding: 28px;
    background-color: var(--bg-light);
    border-top: 3px solid var(--secondary-color);
}

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

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

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

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

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

.mission-image {
    background-color: var(--border-color);
}

.services-intro {
    padding: 60px 40px 40px;
    background-color: var(--bg-white);
}

.services-detailed {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

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

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

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

.service-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.service-cta:hover {
    background-color: #d89543;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-guarantee {
    padding: 80px 40px;
    background-color: var(--secondary-color);
}

.services-guarantee .centered-block {
    color: var(--bg-white);
}

.services-guarantee h2 {
    color: var(--bg-white);
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 14px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-visual,
    .page-hero {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 34px;
    }

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

    .split-layout,
    .asymmetric-layout,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

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