/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d8659;
    --light-green: #4caf50;
    --dark-green: #1b5e20;
    --accent-yellow: #ffd700;
    --accent-orange: #ff9800;
    --accent-blue: #2196f3;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(45, 134, 89, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: transform;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo h1, .logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
    will-change: transform, opacity;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.85), rgba(27, 94, 32, 0.9)), 
                url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=2000&h=1200&fit=crop') center/cover no-repeat;
    color: var(--white);
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    will-change: transform;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
    transform: skewX(-25deg);
}

.btn:hover::after {
    left: 150%;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Sections */
.features, .team, .newsletter, .products-section {
    padding: 5rem 0;
}

.features h2, .team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Feature Cards */
.feature-grid, .team-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card, .product-card, .team-member {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.feature-card:hover, .product-card:hover, .team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(45, 134, 89, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--light-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.team-member h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.role {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.team-member p {
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

/* Product Cards */
.product-image {
    margin: -2rem -2rem 1.5rem -2rem;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.product-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.9rem 2.2rem;
    border: 2px solid var(--primary-green);
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    will-change: transform;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-green), var(--dark-green));
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 7rem 0 5rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        margin: 0.3rem;
    }

    .page-header h2 {
        font-size: 2rem;
    }

    .features h2, .team h2 {
        font-size: 2rem;
    }

    .feature-grid, .team-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .feature-card, .product-card, .team-member {
        padding: 1.5rem;
    }

    .product-image {
        margin: -1.5rem -1.5rem 1.2rem -1.5rem;
    }

    .product-image img {
        height: 220px;
    }

    .filter-bar {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        display: block;
        width: calc(100% - 1rem);
        margin: 0.5rem auto;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .btn-small {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Performance optimizations */
.feature-card, .product-card, .team-member {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Info Page Styles */
.info-section {
    padding: 5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-grid.reverse {
    direction: rtl;
}

.info-grid.reverse > * {
    direction: ltr;
}

.info-text h2 {
    font-size: 2.3rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.info-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.info-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.list-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.9);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f5f9f6 0%, #e8f5e9 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    will-change: transform;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(45, 134, 89, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(10deg) scale(1.1);
}

.value-icon img {
    width: 45px;
    height: 45px;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.92), rgba(27, 94, 32, 0.95)),
                url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1600&h=800&fit=crop') center/cover fixed no-repeat;
    color: var(--white);
    padding: 6rem 0;
}

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

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    will-change: transform;
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 32px;
    height: 32px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f9f6 0%, #ffffff 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy Page Styles */
.privacy-section {
    background: #fafbfc;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-header-icon img {
    width: 40px;
    height: 40px;
}

.privacy-block {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.privacy-block:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.privacy-block-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.privacy-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.privacy-block h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.privacy-block p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-block ul {
    list-style: none;
    margin-top: 1rem;
}

.privacy-block ul li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.privacy-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--light-green);
    border-radius: 50%;
}

.privacy-subsection {
    background: #f5f9f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.2rem;
}

.privacy-subsection h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
}

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

.privacy-subsection ul {
    margin-top: 0;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.usage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: #f5f9f6;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: #e8f5e9;
    transform: translateX(4px);
}

.usage-item img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.usage-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 1rem;
    background: #f5f9f6;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: #e8f5e9;
    transform: translateX(4px);
}

.right-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.right-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.2rem;
    background: linear-gradient(135deg, #f5f9f6, #e8f5e9);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.15);
}

.contact-info-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: var(--primary-green);
    font-size: 0.85rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: var(--primary-green);
}

/* Mission Section specific */
.mission-section {
    background: var(--white);
}

.what-we-do-section {
    background: #fafbfc;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .info-grid.reverse {
        direction: ltr;
    }

    .info-text h2 {
        font-size: 1.9rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .info-image img {
        height: 300px;
    }

    .info-image::before {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.8rem;
    }

    .impact-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .stat {
        padding: 1.5rem 0.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.9rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .privacy-block {
        padding: 1.8rem;
    }

    .privacy-block-header {
        gap: 0.9rem;
    }

    .privacy-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .privacy-block h3 {
        font-size: 1.25rem;
    }

    .page-header-icon {
        width: 65px;
        height: 65px;
    }

    .usage-grid,
    .rights-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 3.5rem 0;
    }

    .info-text h2 {
        font-size: 1.7rem;
    }

    .info-image img {
        height: 250px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .privacy-block {
        padding: 1.5rem;
    }

    .privacy-subsection {
        padding: 1.2rem;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

