.gpm-about-overview-container {
    width: 100%;
    height: auto;
}
.gpm-about-overview-container-main{
    width: 90%;
    height: auto;
    margin: auto;
}
/* Enhanced Header */
.gpm-about-overview-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #c21717;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.gpm-about-overview-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.gpm-about-overview-header h3 {
    font-size: 35px;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.gpm-about-overview-header h2 {
    color: #e0f2fe;
    font-weight: bold;
    animation: fadeInUp 1s ease-out;
}

/* Enhanced Sections */
.gpm-about-overview-section {
    padding: 25px;
    border-radius: 20px;
    background: white;
    color: black;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gpm-about-overview-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gpm-about-overview-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 6px solid var(--accent-color);
    padding-left: 20px;
    display: flex;
    align-items: center;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.feature-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #f0f9ff;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.3rem;
    color: #c21717;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Statistics Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #197d62;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Enhanced List Styling */
.gpm-about-overview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 0;
    list-style: none;
}

.gpm-about-overview-list li {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.gpm-about-overview-list li:hover {
    transform: translateY(-5px);
    background: #f0f9ff;
}

.gpm-about-overview-list li::before {
    content: "✦";
    color: #197d62;
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1;
}

/* Highlight Boxes */
.gpm-about-overview-highlight {
    background-color: #1976d2;
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.15);
    position: relative;
    overflow: hidden;
}

.gpm-about-overview-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {

    .gpm-about-overview-header h1 {
        font-size: 30px;
    }

    .gpm-about-overview-section h2 {
        font-size:20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}