:root {
    --primary-color: #43A047;
    --primary-dark: #2E7D32;
    --primary-light: #66BB6A;
    --primary-lighter: #A5D6A7;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-color: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 60px;
    line-height: 1.2;
}

h2 {
    font-size: 42px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

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

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

.container-fluid {
    max-width: 1320px;
    margin: 0 auto;
}

.container {
    max-width: 1320px;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 999;
    transition: transform 0.3s ease;
}

.header.hide {
    transform: translateY(-100%);
}

.navbar {
    padding: 1.25rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--primary-dark) !important;
    text-transform: uppercase;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-dark) !important;
    margin-left: 1.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 72px;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.85) 0%, rgba(46, 125, 50, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    color: rgba(255,255,255,0.95);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Sections */
.section {
    padding: 140px 0;
}

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

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

.section-gray {
    background-color: #F9F9F9;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

/* Value List */
.value-list {
    list-style: none;
}

.value-list li {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.value-list li:hover {
    border-left-color: var(--primary-dark);
    background-color: #EFEFEF;
    transform: translateX(10px);
}

/* History Timeline */
.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-top: 2.5rem;
}

.timeline-item h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.timeline-item p {
    font-size: 15px;
    margin: 0;
}

/* Quality List */
.quality-list {
    list-style: none;
}

.quality-list li {
    padding: 1.5rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.quality-list li:last-child {
    border-bottom: none;
}

/* Table Styling */
.table {
    border-collapse: collapse;
}

.table thead th {
    background-color: var(--primary-light);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    padding: 1.25rem;
}

.table tbody td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Product Cards */
.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(67, 160, 71, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.card-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-body li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

.card-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    margin-top: auto;
}

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

/* Studies List */
.studies-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.study-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.study-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 18px;
}

.study-item p {
    margin: 0;
    font-size: 15px;
}

/* FAQ Accordion */
#faqAccordion .card {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
}

#faqAccordion .card-header {
    background-color: var(--bg-light);
    border: none;
}

#faqAccordion .card-header a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    display: block;
    padding: 1.5rem;
    text-decoration: none;
}

#faqAccordion .card-header a:hover {
    color: var(--primary-color);
}

#faqAccordion .card-body {
    padding: 1.5rem;
    color: var(--text-gray);
    border-top: 1px solid var(--border-color);
}

/* Views Container */
.views-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.view-item {
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-light);
    position: relative;
}

.view-item p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.view-item strong {
    font-size: 14px;
    color: var(--primary-dark);
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: #FFF8E1;
    border-left: 4px solid #FBC02D;
    padding: 2.5rem;
    border-radius: 8px;
}

.disclaimer-box h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.disclaimer-box ul {
    list-style: none;
}

.disclaimer-box li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(251, 192, 45, 0.3);
    color: var(--text-gray);
}

.disclaimer-box li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.disclaimer-box li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 15px;
}

/* Contact Form */
.contact-form {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 160, 71, 0.15);
    outline: none;
}

.form-disclaimer {
    background-color: var(--bg-white);
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.form-disclaimer p {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
}

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

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0;
    margin-top: 100px;
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    font-size: 14px;
}

.footer hr {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0;
}

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

.policy-links li {
    margin-bottom: 0.75rem;
}

.policy-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.policy-link:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 998;
    padding: 1.5rem;
    border-top: 3px solid var(--primary-color);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content p:first-child {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        text-align: center;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal.show {
    display: block;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 30px auto;
    max-height: calc(100vh - 60px);
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.modal-body {
    padding: 1.5rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.modal-body h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    font-size: 14px;
    color: var(--text-gray);
}

.close {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-dark);
    cursor: pointer;
    background: none;
    border: none;
}

.close:hover {
    color: var(--primary-color);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Alert */
.alert {
    padding: 1rem;
    border-radius: 4px;
    border: none;
}

.alert-success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border-left: 4px solid #43A047;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-balance {
    text-wrap: balance;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
