/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;600;700&display=swap');

#about {
    background:#dcedc8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.about-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #1A1A1A;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    
}


/* White Main Card */
.about-main-card {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    padding: 3rem 2rem 3rem 3rem; /* Extra top padding for the overlap */
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.mv-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1B5E20;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mv-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* CTA Pill Button */
.about-cta-wrapper {
    margin-top: 3rem;
}

.about-pill-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 2px solid #333333;
    border-radius: 50px;
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-pill-btn:hover {
    background: #333333;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Desktop Logic */
@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
    }

    .mv-divider {
        width: 1px;
        background: #EEEEEE;
        height: 100%;
        min-height: 120px;
    }
}

/* Mobile specific value text hide (optional, for cleaner icons) */
@media (max-width: 480px) {
    .value-unit span {
        display: none;
    }
    .about-values-overlap {
        padding: 1.2rem;
    }
}