/* Banner Section */
.banner-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Banner Images Section */
.banner-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    background-color: var(--white);
}

.banner-image-card {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.banner-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

.banner-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.banner-image-card:hover .banner-image-caption {
    transform: translateY(0);
}

/* Main Content Section */
.main-content {
    padding: 60px 20px;
    background-color: var(--white);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* History Content Sections */
.history-section {
    margin-bottom: 60px;
}

.history-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.history-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.history-text ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-left: 25px;
    color: var(--text-light);
}

.history-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.history-highlight {
    background: linear-gradient(135deg, rgba(36, 92, 61, 0.05) 0%, rgba(214, 41, 41, 0.05) 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Key Figures Section */
.key-figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.figure-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.figure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.figure-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
}

.figure-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.figure-role {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.figure-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Mission Vision Grid */
/* .mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
} */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-vision-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.mission-card, .vision-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.card-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.card-points {
    list-style: none;
}

.card-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.card-points li:last-child {
    margin-bottom: 0;
}

.point-icon {
    width: 24px;
    height: 24px;
    background: rgba(36, 92, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.point-icon svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .key-figures {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card, .vision-card {
        padding: 30px;
    }
    
    .banner-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-image-card {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 24px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .history-text {
        font-size: 15px;
    }
    
    .banner-image-card {
        width: 200px;
        height: 200px;
    }
    
    .mission-card, .vision-card {
        padding: 25px;
    }
}