/* About Us Page Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
.about-hero {
    background: url('../images/about-banner.jpg') center/cover no-repeat;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    
}
.about-section, .values-section, .offer-section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(40,53,147,0.07);
}
.about-section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.about-section img {
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(40,53,147,0.10);
}
.values-section {
    text-align: center;
}
.values-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}
.value-icon {
    background: linear-gradient(135deg, #283593 60%, #ffd600 100%);
    color: #fff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(40,53,147,0.13);
}
.offer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}
.offer-section img {
    max-width: 500px;
    border-radius: 12px;
    /* box-shadow: 0 4px 16px rgba(40,53,147,0.10); */
}
.offer-list {
    list-style: disc inside;
    font-size: 1.1rem;
    color: #283593;
}
@media (max-width: 900px) {
    .about-section, .offer-section { flex-direction: column; text-align: center; }
    .about-section img, .offer-section img { margin: 0 auto; }
}
