/* About Content */
.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.mission-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.mission-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.mission-list li:before {
    content: '•';
    color: var(--primary-orange);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-img {
    height: 250px;
    background-color: #f1f1f1;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}