/* =============================================
   ABOUT PAGE STYLES — about.css
   ============================================= */

.about-hero {
    background: linear-gradient(135deg, #25452c 0%, #1b3321 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-section {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f7ee;
    color: #6db34d;
    border: 1px solid #6db34d;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a2b1f;
    margin-bottom: 25px;
    line-height: 1.25;
}

.about-text {
    font-size: 16px;
    color: #4a5d4e;
    line-height: 1.8;
    max-width: 900px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #6db34d;
    box-shadow: 0 10px 30px rgba(109, 179, 77, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ee;
    color: #6db34d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b1f;
    margin-bottom: 12px;
}

.feature-card p {
    color: #4a5d4e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Category Pills - More Compact */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    /* Push to bottom of content area */
}

.pill {
    padding: 6px 14px;
    background: #fcfdfe;
    border: 1.5px solid #eef2f6;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #5c6e5e;
    transition: all 0.2s ease;
}

.pill:hover {
    background: #6db34d;
    color: white;
    border-color: #6db34d;
}

/* Benefits (Quick Highlight) */
.benefits-section {
    background: #fcfdfe;
    padding: 60px 0;
    margin: 50px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b1f;
}

/* CTA Block */
.about-cta {
    background: linear-gradient(135deg, #25452c 0%, #1b3321 100%);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-cta {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .about-cta h2 {
        font-size: 28px;
    }
}