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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #7fa88f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: var(--white);
    border-right: 1px solid var(--border-color);
    padding: 80px 30px 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 25px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.main-content {
    margin-left: 240px;
    padding-top: 36px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--background-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

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

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

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

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

.hero-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
}

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

.problem-section {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.section-image-left {
    flex: 1;
    padding: 0 60px;
    background-color: var(--background-light);
}

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

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

.section-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-content-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-section {
    background-color: var(--white);
    padding: 100px 60px;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.centered-content p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.feature-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 25px 25px;
}

.trust-section {
    background-color: var(--primary-color);
    padding: 80px 60px;
    display: flex;
    gap: 60px;
}

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

.testimonial-text {
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--accent-color);
}

.services-reveal {
    padding: 100px 60px;
    background-color: var(--background-light);
}

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

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

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

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

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 25px 15px;
}

.service-features {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 15px 25px;
    line-height: 1.8;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 25px;
}

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

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

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

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

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

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

.order-form {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

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

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

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

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

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

.footer-column p {
    color: var(--accent-color);
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--primary-color);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cookie-reject:hover {
    background-color: var(--background-light);
}

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

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

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

.products-overview {
    padding: 60px;
}

.product-detail {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.product-detail.reverse {
    flex-direction: row-reverse;
}

.product-image-side {
    flex: 1;
    background-color: var(--background-light);
}

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

.product-info-side {
    flex: 1;
}

.product-info-side h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.product-info-side p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.product-specs {
    list-style: none;
    margin-bottom: 30px;
}

.product-specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.comparison-section {
    padding: 80px 60px;
    background-color: var(--background-light);
}

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

.comparison-guide {
    display: flex;
    gap: 30px;
}

.guide-item {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.guide-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guide-item p {
    color: var(--text-light);
}

.cta-section-centered {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-section-centered p {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.about-story {
    padding: 60px;
}

.story-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.mission-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--background-light);
    gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.mission-image {
    flex: 1;
}

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

.values-section {
    padding: 80px 60px;
}

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

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

.value-block {
    flex: 1;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 60px;
    background-color: var(--background-light);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.team-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-section img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
}

.commitment-section {
    padding: 80px 60px;
}

.commitment-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-block h2:first-of-type {
    margin-top: 0;
}

.contact-info-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-dark);
}

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

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

.faq-section {
    padding: 80px 60px;
    background-color: var(--background-light);
}

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

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

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

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

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

.thanks-section {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-details ul {
    list-style: none;
}

.thanks-details ul li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.thanks-details ul li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
}

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

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

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

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

.legal-page ul {
    margin: 15px 0 15px 30px;
}

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

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

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

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
        padding: 60px 20px 20px;
    }

    .main-content {
        margin-left: 200px;
    }

    .hero-split,
    .problem-section,
    .mission-split,
    .contact-layout,
    .thanks-section {
        flex-direction: column;
    }

    .feature-grid,
    .trust-section,
    .service-cards,
    .comparison-guide,
    .values-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-brand {
        margin-bottom: 20px;
    }

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

    .nav-links li {
        margin-bottom: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .section-content-right h2,
    .centered-content h2,
    .services-intro h2 {
        font-size: 1.8rem;
    }

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