/* Banner Styles */
.page-banner {
    position: relative;
    background: #ffffff !important;
    padding: 50px 0 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.page-banner h1 {
    color: #333333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-banner .breadcrumb {
    position: relative;
    z-index: 2;
    background: transparent;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-banner .breadcrumb-item a {
    color:#000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
    color: #ffb800;
}

.page-banner .breadcrumb-item.active {
    color: #ffb800;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* About Content Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffb800;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffb800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

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

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: #666;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #ffb800;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        text-align: center;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}
