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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b9d77;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #f8f9f7;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e4438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

.hero-image {
    flex: 1;
    background-color: #e8ebe7;
}

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

.story-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e8ebe7;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.insight-split {
    display: flex;
    background-color: var(--primary-color);
    color: var(--white);
    max-width: 1400px;
    margin: 80px auto;
}

.insight-content {
    flex: 1;
    padding: 80px 60px;
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.insight-list {
    list-style: none;
    margin: 30px 0;
}

.insight-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

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

.insight-list strong {
    color: var(--accent-color);
}

.insight-image {
    flex: 1;
    background-color: #d4d8d1;
}

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

.approach-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.approach-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.approach-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8ebe7;
}

.approach-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

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

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

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

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

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

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

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 15px);
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8ebe7;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--text-dark);
}

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

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

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

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

.form-container {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.trust-points {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-point h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 40px;
    margin: 80px 0 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .story-container,
    .insight-split,
    .form-split {
        flex-direction: column;
    }

    .hero-image,
    .story-image,
    .insight-image {
        min-height: 400px;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .main-nav.active {
        left: 0;
    }

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

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

    .story-content h2,
    .insight-content h2,
    .approach-section h2,
    .services-intro h2,
    .trust-container h2 {
        font-size: 28px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .hero-text,
    .insight-content {
        padding: 50px 30px;
    }
}