.page-banner {
    background: linear-gradient(rgba(26, 38, 57, 0.8), rgba(26, 38, 57, 0.9)), url('img/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 60px;
}

.about-section {
    padding: 80px 0;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.mission-vision-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-vision-card .icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #c8a97e;
    font-size: 28px;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(200, 169, 126, 0.9);
    padding: 15px 0;
    transition: bottom 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #c8a97e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #1a2639;
    color: #fff;
}

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 3px solid #c8a97e;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 40px;
    color: #c8a97e;
    margin-bottom: 20px;
}

.stats-section {
    background: linear-gradient(rgba(26, 38, 57, 0.9), rgba(26, 38, 57, 0.9)), url('img/stats-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #c8a97e;
    font-family: 'Playfair Display', serif;
}

.stat-text {
    font-size: 18px;
    opacity: 0.9;
}