.about-page {
    padding-top: 120px;
    min-height: 100vh;
    background: #fff;
}

.about-hero {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1) 0%, rgba(0, 150, 136, 0.05) 100%);
    padding: 80px 0;
    position: relative;
}

.about-hero h1 {
    color: #009688;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.about-hero .lead {
    color: #00796b;
    font-size: 1.25rem;
    font-weight: 500;
}

.about-hero p {
    color: #333;
    line-height: 1.8;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
    margin: 20px;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 15px;
}

.about-image-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #009688;
    border-radius: 15px;
    z-index: 1;
}

.about-image-wrapper:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: rgba(0, 150, 136, 0.1);
    border-radius: 15px;
    z-index: 0;
}

.vision-mission {
    background: #fff;
    padding: 80px 0;
}

.vision-card, .mission-card {
    background: white;
    border-left: 4px solid #009688;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.team-section {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.05) 0%, rgba(0, 150, 136, 0.1) 100%);
    padding: 80px 0;
}

.team-section h2 {
    color: #009688;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: #009688;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.team-info .position {
    color: #00796b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info .description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: #009688;
    border-color: #009688;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #00796b;
    border-color: #00796b;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .about-page {
        padding-top: 100px;
    }
    
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
}