/* Global Styles */
:root {
    --primary-color: #001f3f; /* Navy Blue */
    --secondary-color: #ffffff; /* White */
    --accent-color: #0074D9;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --gray: #dddddd;
    --dark-gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
    margin-right: 5px;
}

.logo h1 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--accent-color);
}

.donate-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.donate-btn:hover {
    background-color: #0063b8;
    color: var(--secondary-color);
}

.donate-btn.active {
    background-color: #0063b8;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('../images/events/banner.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
    margin-top: 80px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Section */
.mission-vision {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.mission-vision .container {
    display: flex;
    gap: 40px;
}

.mission, .vision {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    text-align: center;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.stat {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Events Section */
.events {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.events-slider {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.event {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.event img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event h3 {
    padding: 15px;
    color: var(--primary-color);
}

.event p {
    padding: 0 15px 15px;
    color: var(--dark-gray);
}

/* Team Section */
.team {
    padding: 20px 0;
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.member {
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
    width: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member img {
    width: 200px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--secondary-color);
}

.member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member p {
    color: var(--dark-gray);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
}

.footer-about h3, .footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('../images/events/with_all_special_guests.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--secondary-color);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* About Organization Section */
.about-organization {
    padding: 80px 0;
}

.about-organization .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-organization .about-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-organization .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Founder Section */
.founder {
    padding: 80px 0;
}

.founder .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-bio {
    flex: 1;
}

.founder-bio h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.founder-bio p {
    margin-bottom: 15px;
}

/* Programs Page */
.programs {
    padding: 80px 0;
}

.program {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.program:nth-child(even) {
    flex-direction: row-reverse;
}

.program-image {
    flex: 1;
}

.program-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-content {
    flex: 1;
}

.program-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.program-content ul li {
    margin-bottom: 10px;
}

/* Objectives Section */
.objectives {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.objectives-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.objective {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
}

.objective i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.objective h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Gallery Page */
.gallery-filter {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-buttons button {
    padding: 8px 20px;
    background-color: var(--secondary-color);
    border: 1px solid var(--gray);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 31, 63, 0.8);
    color: var(--secondary-color);
    transition: bottom 0.3s ease;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

/* Video Gallery */
.video-gallery {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-item h3 {
    padding: 15px;
    color: var(--primary-color);
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-form-container {
    display: flex;
    gap: 40px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro p {
    margin-bottom: 20px;
}

.contact-form {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.map {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

/* Donation Page */
.donation-impact {
    padding: 80px 0;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.impact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.impact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Donation Options */
.donation-options {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.options-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    border: 1px solid var(--gray);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-content.active {
    display: block;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.account {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
}

.account h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.account p {
    margin-bottom: 10px;
}

.other-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.option {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.option i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.option h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Donation Form */
.donation-form {
    padding: 80px 0;
}

.form-container {
    display: flex;
    gap: 40px;
}

.form-info {
    flex: 1;
}

.form-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-info p {
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.donation-form-details {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #003366;
    color: var(--secondary-color);
}

.social-btn i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section .container,
    .founder .container,
    .program,
    .program:nth-child(even),
    .contact-form-container,
    .form-container {
        flex-direction: column;
    }

    .mission-vision .container,
    .map-container {
        flex-direction: column;
        gap: 30px;
    }

    .mission, .vision,
    .map {
        width: 100%;
    }

    .team-members {
        flex-wrap: wrap;
    }

    .member {
        width: 45%;
        margin-bottom: 30px;
    }

    .program-image,
    .program-content {
        width: 100%;
    }

    .program {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1rem;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .impact-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 80%;
        margin-bottom: 20px;
    }

    .member {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .social-btn {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat {
        width: 100%;
    }

    .options-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }
}

.pdf-access {
    background-color: #f0f4f8;
    padding: 60px 20px;
    text-align: center;
}

.pdf-access h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004466;
}

.pdf-access p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.bank-details {
    background-color: #ffffff;
    border-left: 5px solid #009578;
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.bank-details ul {
    list-style-type: none;
    padding: 0;
}

.bank-details li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #222;
}

#accessForm input[type="text"],
#accessForm input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

#accessForm button {
    padding: 12px 30px;
    background-color: #009578;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#accessForm button:hover {
    background-color: #007f63;
}

#thankYouMsg {
    font-size: 1.1rem;
    margin-top: 20px;
    color: green;
    font-weight: bold;
}

.seasonal-activities {
    background-color: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

.seasonal-activities h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
    text-align: center;
}

.seasonal-activities p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.seasonal-activities .quarter {
    background-color: #f9f9f9;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-left: 4px solid #009578;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.seasonal-activities h3 {
    color: #004466;
    margin-bottom: 10px;
}

.seasonal-activities ul {
    list-style-type: disc;
    padding-left: 20px;
}

.seasonal-activities li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

#accessForm {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.programs {
  padding: 60px 0;
}

.program {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  gap: 20px;
}

.program-content {
  padding: 20px;
  background-color: #f7f9fb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.program-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.program-content h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.program-content ul {
  margin: 10px 0 15px;
  padding-left: 20px;
}

.program-content ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
