}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Welcome Content (About Page) */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.welcome-text {
    padding-right: 2rem;
}

.welcome-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lead-text {
    font-size: 1.25rem;
    color: #0a1628;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Image Showcase (Gallery/About) */
.image-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.showcase-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-item:hover {
    transform: translateY(-5px);
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Programs Grid (About/Courses) */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.program-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffc107;
    color: #ffffff;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    font-size: 1.25rem;
    color: #0a1628;
    margin-bottom: 0.75rem;
}

.program-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-link {
    color: #ffc107;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    border: 2px solid #ffc107;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-offers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-offers span {
    font-size: 1rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Page Content */
.page-content {
    padding: 4rem 0;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content h2 {
    color: #0a1628;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content h3 {
    color: #1a2f4f;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.entry-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1rem 0 1rem 2rem;
    color: #6c757d;
}

.entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-content {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-offers {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Hero Section with Background Image */
.hero-section[style*='background-image'] {
    background-size: cover;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: #ffc107;
    min-width: 50px;
}

.feature-item h4 {
    margin: 0 0 0.5rem 0;
    color: #0a1628;
    font-size: 1.1rem;
}

.feature-item p {
    margin: 0;
    color: #6c757d;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Section Utilities */
.section {
    padding: 1.5rem 0;
}

.section-header {
    margin-bottom: 1rem;
}

.section-header.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ensure container width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}