﻿.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.how-it-works {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
}

.how-it-works h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2.5rem;
    font-weight: bold;
}

.step-card {
    background: white;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 1rem;
}

.value-proposition {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
    text-align: center;
}

.value-proposition h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.value-proposition .highlight {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin: 1rem 0;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
}

.btn-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-modern {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-left: 1rem;
}

.btn-secondary-modern:hover {
    background: #667eea;
    color: white;
    text-decoration: none;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
}

.stat .label {
    color: #64748b;
    font-size: 1rem;
}
