:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #4a8a4c;
    --secondary-color: #d4a574;
    --accent-color: #8b4513;
    --text-color: #2d2d2d;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-alt: #f8f8f8;
    --bg-light: #fafafa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    box-shadow: var(--shadow);
    list-style: none;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: var(--text-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--bg-alt);
    color: var(--primary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #c99563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-light);
}

section {
    padding: 4rem 0;
}

.alt-bg {
    background: var(--bg-alt);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.page-hero {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-intro {
    font-size: 1.1rem;
    opacity: 0.95;
}

.intro-section {
    padding: 4rem 0;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-icon {
    flex-shrink: 0;
}

.intro-icon img {
    width: 200px;
    height: 200px;
}

@media (min-width: 768px) {
    .intro-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

.values-section,
.featured-products,
.benefits-section,
.testimonials-section,
.statistics-section,
.knowledge-section,
.philosophy-section,
.principles-section,
.mission-section,
.values-detail-section,
.milestones-section,
.trust-section {
    padding: 4rem 0;
}

.values-grid,
.product-categories,
.benefits-list,
.testimonials-grid,
.stats-grid,
.knowledge-grid,
.principles-list,
.values-detail-grid,
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card,
.category-item,
.benefit-item,
.testimonial-card,
.stat-item,
.knowledge-card,
.principle-item,
.value-detail-card,
.trust-item {
    flex: 1 1 100%;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .value-card,
    .category-item,
    .knowledge-card,
    .value-detail-card,
    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .value-card,
    .category-item,
    .knowledge-card,
    .value-detail-card,
    .trust-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.value-card:hover,
.category-item:hover,
.knowledge-card:hover,
.value-detail-card:hover,
.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-card img,
.category-item img,
.trust-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.benefit-text {
    flex: 1;
}

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

@media (min-width: 768px) {
    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    flex: 1 1 calc(50% - 1.5rem);
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 1rem;
}

@media (min-width: 768px) {
    .stat-item {
        flex: 1 1 calc(25% - 2.25rem);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.philosophy-content,
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.principle-item {
    flex: 1 1 100%;
    background: transparent;
    box-shadow: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.principle-item:last-child {
    border-bottom: none;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.faq-section {
    background: var(--bg-alt);
}

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

.faq-item {
    background: var(--bg-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-color);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
}

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

.cta-content h2 {
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-card {
    flex: 1 1 100%;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .product-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .product-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-overview {
    background: var(--bg-alt);
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    flex: 1 1 100%;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

@media (min-width: 640px) {
    .benefit-block {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .benefit-block {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

.benefit-block img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.care-tips {
    padding: 4rem 0;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tip-card {
    flex: 1 1 100%;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (min-width: 640px) {
    .tip-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }
}

.contact-info,
.contact-description {
    flex: 1;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-block a {
    color: var(--primary-color);
}

.company-info-section {
    background: var(--bg-alt);
    padding: 3rem 0;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
}

.contact-faq {
    padding: 4rem 0;
}

.visit-cta {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.story-section,
.team-section {
    padding: 4rem 0;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 100%;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .team-member {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.team-role {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.next-steps {
    background: var(--bg-alt);
    padding: 4rem 0;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 100%;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .step-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.step-item a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 100%;
}

@media (min-width: 640px) {
    .footer-column {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: white;
    padding: 1.5rem;
    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;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-option {
    margin: 1.5rem 0;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-modal-buttons .btn {
    flex: 1;
}

@media (max-width: 639px) {
    .cookie-buttons .btn,
    .cookie-modal-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}