/* About Us Page Styles */

:root {
    --navy: #1a1a2e;
    --orange: #e44d26;
    --soft-gray: #f8fafc;
    --text-dark: #334155;
    --teal: #14b8a6;
}

.about-hero {
    background: white;
    padding: 28px 0 28px;
    text-align: center;
    color: #003566;
    position: relative;
    overflow: hidden;
}

.hero-content-box {
    border-bottom: 2px solid #ff5e14; /* Orange line under content */
    padding: 0 20px 15px 20px;
    display: inline-block;
    max-width: 850px;
    margin: 0 auto;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 77, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color:#003566 ;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-section {
    padding: 18px 0;
    background-color: var(--soft-gray);
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.about-block {
    margin-bottom: 40px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block h2 {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-block h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--orange);
    border-radius: 2px;
}

.about-block p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-block a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-block a:hover {
    color: var(--navy);
}

.about-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.about-block ul li {
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    list-style: none;
    padding-left: 25px;
    line-height: 1.7;
}

.about-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 1.2rem;
    top: -2px;
}

.about-block ul li strong {
    color: var(--navy);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-wrapper {
        padding: 30px;
        margin: 0 15px;
    }
}