.about-hero {
    padding: 100px 24px 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #314e73;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 16px;
    color: #4a6385;
    line-height: 1.65;
}

.about-hero a {
    color: #e87722;
    font-weight: 600;
}

.about-cards {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card {
    background: white;
    border-radius: 34px;
    box-shadow: 0 2px 12px rgba(49, 78, 115, 0.08);
    overflow: hidden;
}

.about-card.open {
    border-radius: 34px;
}

.about-card, .about-card.open {
    transition: box-shadow 0.2s;
}

.about-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.about-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #314e73;
    margin: 0;
}

.about-card-chevron {
    width: 10px;
    height: 10px;
    border-right: 2.5px solid #314e73;
    border-bottom: 2.5px solid #314e73;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.2s;
    margin-top: -4px;
}

.about-card.open .about-card-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.about-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 34px 34px;
}

.about-card-body p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #4a6385;
    line-height: 1.7;
    border-top: 1px solid rgba(49, 78, 115, 0.08);
    padding-top: 20px;
    margin: 0;
}
