/* ====================================
   TAGLINE, ABOUT & STATS SECTIONS
   ==================================== */

.tagline {
    background: #f9f9f9;
    padding: 2rem;
    text-align: center;
}

.tagline h2 {
    color: #5DBAAC;
    font-size: 1.8rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5DBAAC 0%, #4BA89C 100%);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.about {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.stats {
    background: linear-gradient(135deg, #5DBAAC 0%, #4BA89C 100%);
    color: white;
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}
