/* ABOUT US PREMIUM STYLING */
.about-hero {
    background: linear-gradient(135deg, #1e1e2f 0%, #11111d 100%);
    border-radius: 16px;
    padding: 60px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.about-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-section-title span {
    width: 6px;
    height: 28px;
    background: #8c1829;
    border-radius: 3px;
    display: inline-block;
}
.about-text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #444;
}
.about-text p {
    margin-bottom: 20px;
}
.about-text p:last-child {
    margin-bottom: 0;
}
.highlight-quote {
    border-left: 4px solid #8c1829;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #222;
    font-weight: 600;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
    .about-card {
        padding: 25px;
    }
}
