/* about-us.css */
.about-hero {
    padding: 150px 0 100px;
    background: transparent;
}

.mission-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    color: #111;
}

.section-divider {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 60px 0;
}

.commitment-card, .team-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.commitment-card:hover, .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.commitment-icon {
    font-size: 2rem;
    color: #0d6efd; /* Robodata primary blue */
    margin-bottom: 20px;
}

.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-socials a {
    color: #333;
    margin-right: 15px;
    text-decoration: none;
    font-size: 1.2rem;
}

.team-socials a:hover {
    color: #0d6efd;
}
