:root {
    --primary: #2c5f4c;
    --primary-dark: #1e4235;
    --primary-light: #e8f3ef;
    --secondary: #d4a574;
    --secondary-light: #f5ebe0;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f7f7f7;
    --gray: #e0e0e0;
    --border: #d1d1d1;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

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

.header-top {
    background-color: var(--primary-light);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    font-style: italic;
    color: var(--text-light);
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

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

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

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--gray-light);
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.two-col {
    display: flex;
    gap: 60px;
    align-items: center;
}

.two-col-reverse {
    flex-direction: row-reverse;
}

.two-col .col {
    flex: 1;
}

.col-image {
    background-color: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

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

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 calc(50% - 12px);
    min-width: 200px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.feature-text {
    font-size: 15px;
    color: var(--text);
}

.story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.story-content h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 24px;
}

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

.story-highlight {
    background-color: var(--white);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--text-light);
}

.problems-section {
    background-color: var(--secondary-light);
    padding: 80px 0;
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.problem-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 180px;
    background-color: var(--gray);
    overflow: hidden;
}

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

.service-card-content {
    padding: 28px;
}

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

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

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

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

.testimonials-section h2 {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
}

.benefits-section {
    padding: 100px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

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

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

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background-color: var(--secondary-light);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--shadow);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 76, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.footer-main {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary);
}

.footer-contact {
    flex: 1;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.disclaimer-section {
    background-color: var(--gray-light);
    padding: 40px 0;
    border-top: 1px solid var(--gray);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.references-section h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
}

.references-list {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.page-header {
    background-color: var(--primary-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.page-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin: 32px 0 16px;
}

.page-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 24px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content ul li {
    margin-bottom: 8px;
}

.contact-info-section {
    background-color: var(--gray-light);
    padding: 60px 0;
}

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

.contact-card {
    flex: 1;
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    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: 24px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.cookie-btn-reject:hover {
    border-color: var(--white);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px var(--shadow-strong);
}

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

.about-intro .col-text {
    flex: 1.2;
}

.about-intro .col-image {
    flex: 1;
}

.team-section {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.value-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

.legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

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

    .hero-text p {
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        min-height: 300px;
    }

    .two-col {
        flex-direction: column;
    }

    .two-col-reverse {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .benefit-item,
    .benefit-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .about-intro {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid var(--gray);
        box-shadow: 0 4px 20px var(--shadow);
    }

    nav ul.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .section-title {
        font-size: 28px;
    }

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

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

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

    .problem-card {
        min-width: 100%;
    }

    .form-container {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
