/* About Page Specific Styles */
.page-content {
    padding-top: 2rem;
}

.about-content {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.profile-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--ep-secondary);
    background-color: #f8f9fa;
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member h4 {
    color: var(--ep-primary);
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--ep-secondary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-circle {
        width: 150px;
        height: 150px;
    }
} 