﻿/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    background: #fff;
    line-height: 1.6;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

a {
    color: #1b8f5a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2db77a;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8f5e8;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 143, 90, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand {
    display: flex;
    gap: 15px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden; /* makes sure no weird flash */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 18px;
    font-weight: 700;
    color: #1b8f5a;
}

.brand-text span {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu a {
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #1b8f5a;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1b8f5a;
    margin: 5px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, #1b8f5a, #2db77a);
    color: #fff;
    border: 0;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 143, 90, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 143, 90, 0.4);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: #1b8f5a;
    border: 2px solid #1b8f5a;
    box-shadow: none;
}

.btn--ghost:hover {
    background: #1b8f5a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(27, 143, 90, 0.3);
}

.btn--small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn--full {
    width: 100%;
}

/* Hero Sections */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf9, #e8f5e8);
    position: relative;
    overflow: hidden;
}

.hero--small {
    padding: 80px 0 60px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #1b8f5a;
    font-weight: 700;
}

.hero h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #ffffff;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin: 0 0 30px;
    color: #5a6b65;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero p1 {
    font-size: 18px;
    margin: 0 0 30px;
    color: #f2f3f3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.section--tint {
    background: #f8fdf9;
}

.section--dark {
    background: #1b8f5a;
    color: #fff;
}

.section-title {
    font-size: 36px;
    margin: 0 0 20px;
    color: #1b8f5a;
    font-weight: 700;
}

.section--dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section--dark .section-subtitle {
    color: #e8f5e8;
}

.center {
    text-align: center;
}

.eyebrow {
    color: #1b8f5a;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 10px;
    font-size: 14px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.media-card {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.15);
}

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

/* Cards */
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 143, 90, 0.2);
}

.card__body {
    padding: 24px;
}

/* Why Cards */
.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 20px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
    transition: transform 0.3s ease;
}

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

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 24px;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1b8f5a;
    font-weight: bold;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail--reverse {
    direction: rtl;
}

.product-detail--reverse > * {
    direction: ltr;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.15);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.image-gallery img {
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.product-info h2 {
    color: #1b8f5a;
    margin: 0 0 20px;
    font-size: 32px;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6b65;
}

.product-specs {
    margin: 30px 0;
}

.product-specs h3 {
    color: #1b8f5a;
    margin: 0 0 20px;
    font-size: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e8f5e8;
}

.spec-label {
    font-weight: 600;
    color: #2c3e50;
}

.spec-value {
    color: #1b8f5a;
    font-weight: 600;
}

.product-features {
    margin: 30px 0;
}

.product-features h3 {
    color: #1b8f5a;
    margin: 0 0 20px;
    font-size: 20px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1b8f5a;
    font-weight: bold;
}

.product-applications {
    margin: 30px 0;
}

.product-applications h3 {
    color: #1b8f5a;
    margin: 0 0 20px;
    font-size: 20px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.application {
    text-align: center;
    padding: 20px;
    background: #f8fdf9;
    border-radius: 12px;
}

.app-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.application h4 {
    color: #1b8f5a;
    margin: 0 0 10px;
    font-size: 16px;
}

.application p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quality-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
}

.quality-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.quality-item h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 18px;
}

/* Packaging Grid */
.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.packaging-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.packaging-option h3 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 20px;
}

.packaging-option p {
    color: #e8f5e8;
    margin-bottom: 20px;
}

.packaging-option ul {
    list-style: none;
    padding: 0;
    color: #e8f5e8;
}

.packaging-option li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.packaging-option li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2db77a;
}

/* Founder Profile */
.founder-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.founder-image img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.15);
}

.founder-content h3 {
    color: #1b8f5a;
    margin: 0 0 10px;
    font-size: 28px;
}

.founder-title {
    color: #7f8c8d;
    font-size: 16px;
    margin: 0 0 20px;
    font-weight: 600;
}

.credentials {
    margin: 30px 0;
}

.credential {
    padding: 15px 0;
    border-bottom: 1px solid #e8f5e8;
}

.credential:last-child {
    border-bottom: none;
}

.achievements {
    margin: 30px 0;
}

.achievements h4 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 18px;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.achievements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1b8f5a;
    font-weight: bold;
}

.research-areas {
    margin: 30px 0;
}

.research-areas h4 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 18px;
}

.research-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e8f5e8;
    color: #1b8f5a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Mission Values */
.mission-values {
    margin: 30px 0;
}

.value-item {
    margin: 20px 0;
    padding: 20px;
    background: #f8fdf9;
    border-radius: 12px;
    border-left: 4px solid #1b8f5a;
}

.value-item h4 {
    color: #1b8f5a;
    margin: 0 0 10px;
    font-size: 18px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1b8f5a;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #1b8f5a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(27, 143, 90, 0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h4 {
    color: #1b8f5a;
    margin: 0 0 10px;
    font-size: 18px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.team-member h4 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 20px;
}

.role {
    color: #2db77a;
    font-weight: 600;
    margin: 0 0 10px;
    font-size: 14px;
}

.team-member p {
    color: #e8f5e8;
    font-size: 14px;
    margin: 0;
}

/* Climate Stats */
.climate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1b8f5a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 20px;
}

/* Impact Metrics */
.impact-metrics {
    margin: 30px 0;
}

.metric {
    margin: 30px 0;
    padding: 20px;
    background: #f8fdf9;
    border-radius: 12px;
    border-left: 4px solid #1b8f5a;
}

.metric-number {
    font-size: 36px;
    font-weight: 700;
    color: #1b8f5a;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.metric p {
    color: #5a6b65;
    margin: 0;
}

/* LCA Grid */
.lca-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.lca-stage {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lca-stage h3 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 16px;
}

.lca-stage ul {
    list-style: none;
    padding: 0;
    color: #e8f5e8;
}

.lca-stage li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.lca-stage li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2db77a;
}

/* SDG Grid */
.sdg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sdg-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
    transition: transform 0.3s ease;
}

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

.sdg-number {
    width: 60px;
    height: 60px;
    background: #1b8f5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.sdg-card h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 18px;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.certification {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(27, 143, 90, 0.1);
}

.certification h3 {
    color: #1b8f5a;
    margin: 0 0 10px;
    font-size: 18px;
}

/* CTA Cards */
.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 20px;
}

.cta-card p {
    color: #e8f5e8;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #1b8f5a;
    margin: 0 0 20px;
    font-size: 32px;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: #f8fdf9;
    border-radius: 12px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: #1b8f5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h3 {
    color: #1b8f5a;
    margin: 0 0 5px;
    font-size: 18px;
}

.contact-method p {
    color: #5a6b65;
    margin: 0;
    font-size: 14px;
}

.social-links {
    margin: 30px 0;
}

.social-links h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    background: #1b8f5a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2db77a;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.1);
}

.contact-form-container h2 {
    color: #1b8f5a;
    margin: 0 0 30px;
    font-size: 28px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1b8f5a;
}

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

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(27, 143, 90, 0.1);
}

.faq-item h3 {
    color: #1b8f5a;
    margin: 0 0 15px;
    font-size: 18px;
}

.faq-item p {
    color: #5a6b65;
    margin: 0;
    line-height: 1.6;
}

/* Facility Info */
.facility-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.facility-details h3 {
    color: #1b8f5a;
    margin: 0 0 20px;
    font-size: 28px;
}

.facility-features {
    margin: 30px 0;
}

.facility-features .feature {
    margin: 20px 0;
    padding: 20px;
    background: #f8fdf9;
    border-radius: 12px;
    border-left: 4px solid #1b8f5a;
}

.facility-features h4 {
    color: #1b8f5a;
    margin: 0 0 10px;
    font-size: 16px;
}

.facility-features p {
    color: #5a6b65;
    margin: 0;
    font-size: 14px;
}

.facility-map img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 143, 90, 0.15);
}

/* Footer */
.footer {
    background: #0c241d;
    color: #e8f5e8;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    margin: 0 0 20px;
    font-size: 18px;
}

.footer-section p {
    color: #a8c7bf;
    margin: 0 0 10px;
    font-size: 14px;
}

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

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

.footer-section a {
    color: #a8c7bf;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #173f33;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #a8c7bf;
    font-size: 14px;
    margin: 0;
}

/* To Top Button */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: #1b8f5a;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(27, 143, 90, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.to-top:hover {
    background: #2db77a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-2,
    .split,
    .product-detail,
    .contact-grid,
    .facility-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packaging-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .climate-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .lca-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        height: 70px;
    }
    
    .menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .lca-grid {
        grid-template-columns: 1fr;
    }
    
    .sdg-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        position: absolute;
        left: -50px;
        top: 0;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
}
