 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: #f5faf5;
            color: #1a2e1a;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 0.8rem 5%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(45, 106, 79, 0.1);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .logo-placeholder {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #2d6a4f, #40916c);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 12px rgba(45,106,79,0.25);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #2d6a4f, #40916c);
            -webkit-background-clip: text;
            background-clip: text; /* Propiedad estándar */
            -webkit-text-fill-color: transparent;
            color: transparent; /* Fallback para navegadores que no soportan text-fill-color */
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .logo-text span {
            display: block;
            font-size: 0.75rem;
            color: #5b8c5b;
            background: none;
            -webkit-text-fill-color: #5b8c5b;
            letter-spacing: 0.5px;
        }

        /* Botón hamburguesa */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            z-index: 200;
        }

        .hamburger-btn span {
            width: 100%;
            height: 3px;
            background: #1a2e1a;
            border-radius: 4px;
            transition: 0.3s;
        }

        .hamburger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* Navegación desktop */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #2d3e2d;
            font-weight: 500;
            cursor: pointer;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            transition: all 0.2s;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        nav a:hover {
            background: #e8f3e8;
            color: #2d6a4f;
        }

        nav a i {
            margin-right: 6px;
        }

        /* Carrito */
        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.3rem;
            color: #1a2e1a;
            padding: 0.6rem;
            border-radius: 50%;
            background: #f0f7f0;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .cart-icon:hover {
            background: #2d6a4f;
            color: white;
        }

        .cart-count {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #e67e22;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 20px;
            min-width: 20px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, rgba(29, 53, 29, 0.92), rgba(45, 106, 79, 0.9)), url('https://images.unsplash.com/photo-1610348725531-843dff563e2c?auto=format&fit=crop&w=1600');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
            margin-bottom: 2rem;
        }

        .hero h2 {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .hero h3 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .hero-buttons .btn {
            padding: 0.8rem 2.5rem;
            background: white;
            color: #1a2e1a;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .hero-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        /* Beneficios */
        .benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 3rem 5%;
            background: white;
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefit {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 24px;
            background: #f8fff8;
            border: 1px solid #e0f0e0;
            transition: 0.3s;
        }

        .benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(45,106,79,0.1);
        }

        .benefit i {
            font-size: 2.5rem;
            color: #2d6a4f;
            margin-bottom: 1rem;
            background: #e8f3e8;
            padding: 1rem;
            border-radius: 60px;
        }

        .benefit h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .benefit p {
            color: #4a6b4a;
            font-size: 0.9rem;
        }

        /* Filtros */
        .filters-section {
            padding: 1.5rem 5%;
            background: white;
            margin: 1.5rem 0;
            border-radius: 30px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .filters-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
        }

        .category-filters {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .filter-chip {
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            background: #f0f7f0;
            border: 1px solid #d0e8d0;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s;
            color: #1a3a1a;
            white-space: nowrap;
        }

        .filter-chip:hover,
        .filter-chip.active {
            background: #2d6a4f;
            color: white;
            border-color: #2d6a4f;
        }

        .filter-chip i {
            margin-right: 5px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: white;
            border: 1px solid #d0e0d0;
            border-radius: 50px;
            padding: 0.2rem;
            min-width: 280px;
        }

        .search-box input {
            border: none;
            padding: 0.7rem 1rem;
            width: 100%;
            outline: none;
            font-size: 0.9rem;
            background: transparent;
            border-radius: 50px;
        }

        .search-box button {
            background: #2d6a4f;
            border: none;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: 0.3s;
        }

        .search-box button:hover {
            background: #1e4f3a;
        }

        /* GRID PRODUCTOS: 4 columnas en desktop, 2 en móvil */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            padding: 2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Tarjeta de producto */
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 12px rgba(0,0,0,0.03);
            transition: all 0.2s;
            border: 1px solid rgba(45, 106, 79, 0.1);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 25px rgba(45,106,79,0.12);
        }

        .product-image-container {
            position: relative;
            padding-top: 75%;
            background: #f9fff9;
        }

        .product-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badge {
            position: absolute;
            top: 0.8rem;
            left: 0.8rem;
            background: #2d6a4f;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.65rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-info {
            padding: 1rem;
        }

        .product-category {
            color: #2d6a4f;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-bottom: 0.2rem;
        }

        .product-name {
            font-size: 1rem;
            font-weight: 700;
            color: #1a2e1a;
            margin-bottom: 0.2rem;
            line-height: 1.3;
        }

        .product-weight {
            font-size: 0.7rem;
            color: #5b8c5b;
            background: #edf7ed;
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            margin: 0.3rem 0;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.5rem;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d6a4f;
        }

        .add-btn {
            background: #2d6a4f;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(45,106,79,0.3);
            transition: 0.2s;
        }

        .add-btn:hover {
            background: #1e4f3a;
            transform: scale(1.1);
        }

        /* Detail modal */
        .product-detail-view {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            backdrop-filter: blur(5px);
            animation: slideUp 0.3s;
        }

        .product-detail-view.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .detail-card {
            background: white;
            width: 90%;
            max-width: 420px;
            border-radius: 30px;
            overflow: hidden;
            animation: slideIn 0.3s;
            max-height: 95vh;
            overflow-y: auto;
        }

        .detail-header {
            padding: 1rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid #e0f0e0;
            position: sticky;
            top: 0;
            background: white;
            z-index: 2;
        }

        .back-btn {
            background: #f0f7f0;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            color: #2d6a4f;
        }

        .detail-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .detail-body {
            padding: 1.2rem;
        }

        .detail-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2d6a4f;
            margin: 0.2rem 0;
        }

        .qty-selector {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
            background: #f5faf5;
            padding: 0.2rem;
            border-radius: 40px;
        }

        .qty-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: white;
            font-size: 1.3rem;
            cursor: pointer;
            color: #2d6a4f;
        }

        textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #d0e0d0;
            border-radius: 16px;
            margin: 0.8rem 0;
            font-size: 0.85rem;
            resize: none;
        }

        .detail-add-btn {
            width: 100%;
            padding: 0.9rem;
            background: #2d6a4f;
            color: white;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
        }

        /* Carrito modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .cart-modal.active {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .cart-panel {
            background: white;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            padding: 1.5rem;
            overflow-y: hidden;
            animation: slideRight 0.3s;
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .close-cart {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: #f0f7f0;
            font-size: 1.3rem;
            cursor: pointer;
        }

        .cart-items-list {
            max-height: 35vh;
            overflow-y: auto;
            margin: 1rem 0;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid #e0f0e0;
            font-size: 0.9rem;
        }

        .cart-item-price {
            font-weight: 700;
            color: #2d6a4f;
        }

        .remove-item {
            color: #e74c3c;
            cursor: pointer;
            margin-left: 1rem;
        }

        /* Carrusel */
        .carousel-section {
            margin: 1.2rem 0;
            
        }

        .carousel-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .carousel-track {
            display: flex;
            gap: 0.8rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 0.5rem 0.2rem 1rem;
        }

        .complement-card {
            min-width: 105px;
            background: white;
            border: 1px solid #e0f0e0;
            border-radius: 18px;
            padding: 0.6rem 0.3rem;
            text-align: center;
            position: relative;
        }

        .complement-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.3rem;
            border: 2px solid #2d6a4f;
        }

        .add-complement {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2d6a4f;
            color: white;
            border: none;
            cursor: pointer;
        }

        .service-selector {
            background: #f5faf5;
            border-radius: 20px;
            padding: 1rem;
            margin: 1rem 0;
        }

        .service-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.4rem;
            margin: 0.5rem 0;
        }

        .service-btn {
            padding: 0.6rem 0.2rem;
            border: 1px solid #d0e8d0;
            border-radius: 40px;
            background: white;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .service-btn.active {
            background: #2d6a4f;
            color: white;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 1rem 0;
            padding-top: 0.8rem;
            border-top: 2px solid #2d6a4f;
        }

        .whatsapp-btn {
            width: 100%;
            padding: 0.9rem;
            background: #25D366;
            color: white;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background: #1a2e1a;
            color: white;
            margin-top: 3rem;
            padding: 3rem 5% 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            color: #81b29a;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section p, .footer-section a {
            color: #e0f0e0;
            text-decoration: none;
            line-height: 1.8;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(129, 178, 154, 0.2);
            font-size: 0.9rem;
        }

        @keyframes slideIn {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideRight {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }

        /* MEDIA QUERIES */
        @media (max-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hamburger-btn {
                display: flex;
            }

            .nav-container {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 5rem 1.5rem 2rem;
                transition: left 0.3s ease;
                z-index: 150;
                box-shadow: 2px 0 20px rgba(0,0,0,0.1);
                justify-content: flex-start;
                gap: 2rem;
            }

            .nav-container.active {
                left: 0;
            }

            nav {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
            }

            nav a {
                width: 100%;
                text-align: left;
                padding: 0.8rem 1rem;
                font-size: 1rem;
                border-radius: 12px;
            }

            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: flex !important;
            }

            .hero h3 {
                font-size: 2.2rem;
            }

            .benefits {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1.5rem 4%;
            }

            .filters-container {
                flex-direction: column;
                align-items: stretch;
            }

            .category-filters {
                justify-content: center;
            }

            .search-box {
                width: 100%;
                min-width: auto;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
                padding: 0.8rem 4%;
            }

            .product-name {
                font-size: 0.85rem;
            }

            .product-price {
                font-size: 1rem;
            }

            .add-btn {
                width: 34px;
                height: 34px;
                font-size: 1.2rem;
            }

            .cart-modal.active {
                align-items: flex-end;
            }
             .detail-card{
                max-width: 100%;
                height: 150vh !important;
                border-radius: 30px 30px 0 0;
                animation: slideUp 0.3s;
                
            }
            .cart-panel {
                max-width: 100%;
                height: 100vh; 
                animation: slideUp 0.3s;
                padding-bottom: 80px;
            }
             .cart-items-list{
                 height:100px;
             }

            @keyframes slideUp {
                from { transform: translateY(100%); }
                to { transform: translateY(0); }
            }
              .whatsapp-btn {
        position: sticky;       
        bottom: 10px;
        z-index: 10;
        margin: 1rem 0 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }
            
        }

        @media (max-width: 380px) {
            .product-grid {
                gap: 0.6rem;
            }
            
            .product-info {
                padding: 0.6rem;
            }
            
            .product-name {
                font-size: 0.8rem;
            }
            
            .product-price {
                font-size: 0.9rem;
            }
            
            .add-btn {
                width: 32px;
                height: 32px;
            }
        }

 /* About Section Styles */
.about-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8fff8 0%, #f0f7f0 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 2.5rem;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2d6a4f, #40916c);
    border-radius: 2px;
}

.about-subtitle {
    color: #4a6b4a;
    font-size: 1.1rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(45,106,79,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2d6a4f, #40916c);
}

.mission-icon, .vision-icon {
    width: 60px;
    height: 60px;
    background: #e8f3e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: #2d6a4f;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: #1a2e1a;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    color: #4a6b4a;
    line-height: 1.6;
    font-size: 1rem;
}

.section-title {
    font-size: 2rem;
    color: #1a2e1a;
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.value-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(45,106,79,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(45,106,79,0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45,106,79,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #e8f3e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.value-icon i {
    font-size: 2rem;
    color: #2d6a4f;
}

.value-item h4 {
    font-size: 1.2rem;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #4a6b4a;
    font-size: 0.9rem;
    line-height: 1.5;
}

.offer-section {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(45,106,79,0.1);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fff8;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e0f0e0;
}

.offer-item:hover {
    background: #2d6a4f;
    color: white;
    transform: translateX(5px);
}

.offer-item:hover i {
    color: white;
}

.offer-item i {
    font-size: 1.5rem;
    color: #2d6a4f;
    transition: color 0.3s ease;
}

.offer-item span {
    font-weight: 500;
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
}

.about-btn {
    background: #2d6a4f;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 20px rgba(45,106,79,0.3);
}

.about-btn:hover {
    background: #1e4f3a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(45,106,79,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .offer-section {
        padding: 2rem 1.5rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.8rem;
    }
}
 