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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.main-header {
    background-color: #2d5016;
    color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    border-radius: 50%;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
}

.primary-navigation ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.primary-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.primary-navigation a:hover {
    color: #a8d08d;
}

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(45, 80, 22, 0.8);
    padding: 40px 60px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    padding: 60px 0;
}

.intro-section h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.features-grid {
    padding: 60px 0;
    background-color: #f4f7f5;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    color: #2d5016;
    padding: 20px;
    padding-bottom: 10px;
}

.feature-card p {
    padding: 0 20px 20px 20px;
    color: #555;
}

.statistics-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: #f4f7f5;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #555;
}

.cta-section {
    padding: 60px 0;
    background-color: #2d5016;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #a8d08d;
    color: #2d5016;
}

.btn-primary:hover {
    background-color: #8fb872;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.site-footer {
    background-color: #1a3010;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #a8d08d;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #a8d08d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d5016;
    color: #a8d08d;
}

.page-header {
    background-color: #f4f7f5;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.process-timeline {
    padding: 60px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 28px;
    color: #2d5016;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.care-grid {
    padding: 60px 0;
}

.care-item {
    background-color: #f4f7f5;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid #2d5016;
}

.care-item h3 {
    font-size: 24px;
    color: #2d5016;
    margin-bottom: 15px;
}

.care-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.products-showcase {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 24px;
    color: #2d5016;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.team-grid {
    padding: 60px 0;
}

.team-member {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    align-items: start;
}

.team-member img {
    width: 100%;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 26px;
    color: #2d5016;
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    font-size: 18px;
    color: #a8d08d;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member p:last-of-type {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.terminology-list {
    padding: 60px 0;
}

.term-item {
    background-color: #f4f7f5;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 5px solid #2d5016;
}

.term-item h3 {
    font-size: 22px;
    color: #2d5016;
    margin-bottom: 10px;
}

.term-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.blog-listing {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 22px;
    color: #2d5016;
    margin-bottom: 15px;
}

.blog-card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-content a {
    color: #2d5016;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-card-content a:hover {
    color: #a8d08d;
}

.faq-container {
    padding: 60px 0;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: #f4f7f5;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #2d5016;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e8f0e5;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 20px;
}

.contact-page {
    padding: 40px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2, .contact-form h2 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-form {
    background-color: #f4f7f5;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: #2d5016;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #2d5016;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-notification {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3010;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
}

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

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #a8d08d;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-accept, .btn-decline, .btn-customize {
    padding: 12px 25px;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2d5016;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6b21;
}

.btn-decline {
    background-color: #666;
    color: #ffffff;
}

.btn-decline:hover {
    background-color: #555;
}

.btn-customize {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-content h2 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.close-modal {
    background-color: #2d5016;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-modal:hover {
    background-color: #1a3010;
}

@media (max-width: 768px) {
    .primary-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .team-member {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

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