/* GEP Hero Section */
.gep-hero-section {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../Media/GepPagePhoto.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gep-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gep-hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.gep-main-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

/* Commitment Section */
.gep-commitment-section {
    margin-bottom: 5rem;
}

.gep-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
    position: relative;
}

.gep-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d63384; /* Purple/pink for gender equality theme */
}

.gep-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.gep-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gep-stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 5px solid #d63384;
}

.gep-stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: #d63384;
    margin-top: 1rem;
}

/* Targets Section */
.gep-targets-section {
    margin-bottom: 5rem;
}

.gep-targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gep-target-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.gep-target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.target-icon-container {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #d63384;
    font-size: 1.5rem;
}

.gep-target-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.gep-target-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CEO Section */
.gep-ceo-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin: 5rem 0;
}

.gep-ceo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 0 20px;
}

.ceo-image-container {
    text-align: center;
}

.ceo-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-message blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1f2937;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.ceo-message blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 4rem;
    color: #d63384;
    opacity: 0.2;
    font-family: serif;
}

.ceo-signature {
    margin-top: 2rem;
}

.ceo-signature strong {
    display: block;
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.ceo-signature span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gep-hero-title {
        font-size: 2.5rem;
    }
    
    .gep-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .gep-ceo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ceo-message blockquote {
        padding-left: 0;
        font-size: 1.2rem;
    }
    
    .ceo-message blockquote::before {
        left: 50%;
        transform: translateX(-50%);
    }
}