
.about-hero .col-12 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
}

.about-hero p {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #111827;
    margin-bottom: 1.35rem;
}

.about-hero p:last-of-type {
    margin-bottom: 0;
}

.stats-section {
    padding: 0 0 4.5rem;
    border-radius: 32px;
    margin-top: 2.5rem;
}
.stats-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif !important;
}

.about-title {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif !important;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    margin-bottom: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(12px);
}
.stat-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
    border-color: #6658ea;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.stat-label {
    font-size: 1.125rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.stat-subtext {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}
.stat-card-small {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
    margin-bottom: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}
.stat-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    border-color: #6658ea;
}
.stat-card-small .stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.features-section {
    padding: 4.5rem 0 4rem;
}
.features-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif !important;
}

.feature-card {
    padding: 2.25rem 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(148, 163, 184, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.18), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.feature-card + .feature-card {
    margin-top: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.14);
    border-color: rgba(129, 140, 248, 0.75);
}

.feature-icon {
    font-size: 5rem;
    color: #000;
    flex-shrink: 0;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-content {
    flex: 1;
}
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif !important;
}
.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .features-title, .stats-title {
        font-size: 1.75rem;
    }
    .feature-card {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 0.2rem;
    }
    .feature-icon {
        font-size: 4rem;
    }
}



