/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 24px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.programs-list {
    max-width: 900px;
    margin: 0 auto;
}

.program-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.program-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.program-card h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    padding-right: 80px;
}

.program-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.impact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    margin-top: 60px;
}

.impact-text {
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-detail-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-detail-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-detail-card h2 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #333;
}

.service-detail-card p {
    padding: 0 25px 25px;
    line-height: 1.8;
    color: #666;
}

.why-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-us-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
    font-size: 22px;
    color: #667eea;
    margin-bottom: 15px;
}

.benefit-card p {
    line-height: 1.7;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .intro-text {
        font-size: 18px;
    }

    .programs-list {
        padding: 0 10px;
    }

    .program-card {
        padding: 30px 25px;
    }

    .program-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .program-card h2 {
        font-size: 24px;
        padding-right: 60px;
    }

    .program-card p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-us-section .section-title {
        font-size: 28px;
    }

    .impact-text {
        font-size: 20px;
    }

    .contact-banner {
        height: 300px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-intro {
        font-size: 18px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 16px;
    }

    .program-card {
        padding: 25px 20px;
    }

    .program-card h2 {
        font-size: 20px;
        padding-right: 60px;
    }

    .program-number {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .service-detail-card h2 {
        font-size: 20px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        font-size: 32px;
    }
}
