:root {
    --primary-green: #2d5a27;
    --accent-green: #4a7c59;
    --light-green: #7fb069;
    --dark-text: #2c2c2c;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-light: #e1e5e9;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --content-width: 800px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    color: var(--primary-green);
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
    color: var(--accent-green);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 1rem 0 0.5rem;
    color: var(--accent-green);
}

p {
    margin-bottom: 1rem;
    max-width: var(--content-width);
}

ul, ol {
    margin: 1rem 0;
    padding-left: 2rem;
    max-width: var(--content-width);
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    border-left: 4px solid var(--light-green);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--bg-light);
    font-style: italic;
    max-width: var(--content-width);
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--light-green) 20%, var(--accent-green) 50%, var(--light-green) 80%, transparent 100%);
    margin: 3rem 0;
    max-width: var(--content-width);
}

.site-header {
    padding: 2rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.brand-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: left;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.data-snippets-module {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.data-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.data-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
    flex: 1;
    max-width: 220px;
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.data-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.data-label {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.data-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.content-module {
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.table-of-contents {
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-green);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.25rem 0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.table-of-contents a:hover {
    background-color: rgba(127, 176, 105, 0.1);
    padding-left: 0.5rem;
}

.main-content {
    max-width: var(--content-width);
}

.callout {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(74, 124, 89, 0.05) 100%);
    border-left: 4px solid var(--light-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    max-width: var(--content-width);
}

.callout p {
    margin-bottom: 0;
    font-weight: 500;
}

.img-left {
    float: left;
    margin: 0 2rem 1rem 0;
    max-width: 300px;
    border-radius: 8px;
}

.img-right {
    float: right;
    margin: 0 0 1rem 2rem;
    max-width: 300px;
    border-radius: 8px;
}

.gallery-module {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.gallery-module h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.table-container {
    margin: 2rem 0;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

.strain-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.strain-comparison-table th,
.strain-comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.strain-comparison-table th {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.strain-comparison-table tr:hover {
    background: var(--bg-light);
}

.strain-comparison-table tr:nth-child(even) {
    background: rgba(248, 249, 250, 0.5);
}

.strain-comparison-table tr:nth-child(even):hover {
    background: var(--bg-light);
}

.table-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid var(--accent-green);
}

.table-note p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--light-text);
}





@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .site-header {
        padding: 1.5rem 0;
    }
    
    .data-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .data-item {
        max-width: 100%;
        width: 100%;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-of-contents {
        position: static;
        order: 1;
    }
    
    .main-content {
        order: 2;
    }
    
    .img-left, .img-right {
        float: none;
        margin: 1rem 0;
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
}

.faq-module {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.faq-module h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(127, 176, 105, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-green);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--light-green);
}

.site-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.footer-bottom p:first-child {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .site-header {
        padding: 1.5rem 0;
    }
    
    .data-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .data-item {
        max-width: 100%;
        width: 100%;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-of-contents {
        position: static;
        order: 1;
    }
    
    .main-content {
        order: 2;
    }
    
    .img-left, .img-right {
        float: none;
        margin: 1rem 0;
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .strain-comparison-table th,
    .strain-comparison-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }
    
    .strain-comparison-table th {
        font-size: 0.75rem;
    }
    
    .table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        margin-left: calc(-50vw + 50% + 20px);
        margin-right: calc(-50vw + 50% + 20px);
    }
    
    .strain-comparison-table {
        min-width: 800px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
}
