
    .page-hero {
        background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('{% static "images/church-ministry.jpg" %}');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    
    .page-hero h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .page-hero p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Description Section */
    .church-description {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    }
    
    .description-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .description-title {
        font-size: 32px;
        font-weight: 800;
        color: #2c7a4d;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .description-title span {
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
        color: #e67e22;
        margin-bottom: 10px;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        text-align: justify;
        margin-bottom: 20px;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
        background: white;
    }
    
    /* Core Values Section */
    .core-values-section {
        padding: 60px 0;
        background: #f8f9fa;
    }
    
    .section-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
        font-weight: 800;
        color: #2c7a4d;
        margin-bottom: 10px;
    }
    
    .section-header span {
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
        color: #e67e22;
        margin-bottom: 10px;
    }
    
    /* Oval Grid */
    .oval-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* Oval Shape */
    .oval-item {
        background: linear-gradient(135deg, #2c7a4d 0%, #1e5a38 100%);
        border-radius: 100px;
        padding: 15px 30px;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
        min-width: 200px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .oval-item:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        background: linear-gradient(135deg, #1e5a38 0%, #2c7a4d 100%);
    }
    
    .oval-item h3 {
        font-size: 16px;
        font-weight: 700;
        color: white;
        margin: 0;
        letter-spacing: 1px;
    }
    
    .oval-item i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    /* Core Values Oval - Different Style */
    .value-oval {
        background: white;
        border: 2px solid #2c7a4d;
        border-radius: 100px;
        padding: 15px 30px;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
        min-width: 200px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .value-oval h3 {
        font-size: 16px;
        font-weight: 700;
        color: #2c7a4d;
        margin: 0;
        letter-spacing: 1px;
    }
    
    .value-oval i {
        margin-right: 8px;
        font-size: 16px;
        color: #2c7a4d;
    }
    
    .value-oval:hover {
        background: #2c7a4d;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .value-oval:hover h3,
    .value-oval:hover i {
        color: white;
    }
    
    /* Program Items - Reduced Size */
    .programs-section {
        padding: 60px 0;
        background: #faf6f0;
    }
    
    .programs-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 32px;
        font-weight: 800;
        color: #2c7a4d;
        margin-bottom: 40px;
    }
    
    .section-subtitle span {
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
        color: #e67e22;
        margin-bottom: 10px;
    }
    
    .program-item {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        margin-bottom: 25px;
        transition: all 0.3s;
        display: none;
    }
    
    .program-item.visible {
        display: block;
    }
    
    .program-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .program-image {
        width: 100%;
        height: 100%;
        min-height: 280px;
        object-fit: cover;
    }
    
    .program-content {
        padding: 25px;
    }
    
    .program-title {
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 12px;
    }
    
    .program-description {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
    }
    
    .btn-learn {
        background: #2c7a4d;
        color: white;
        padding: 10px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .btn-learn:hover {
        background: #1e5a38;
        color: white;
        transform: translateX(5px);
    }
    
    /* Load More Button */
    .load-more-container {
        text-align: center;
        margin-top: 40px;
    }
    
    .btn-load-more {
        background: #2c7a4d;
        color: white;
        padding: 12px 40px;
        border-radius: 40px;
        border: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .btn-load-more:hover {
        background: #1e5a38;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .loading-spinner {
        display: none;
        text-align: center;
        margin: 20px 0;
    }
    
    .spinner {
        border: 3px solid #f3f3f3;
        border-top: 3px solid #2c7a4d;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .empty-state {
        text-align: center;
        padding: 60px 20px;
        background: white;
        border-radius: 15px;
    }
    
    .empty-state i {
        font-size: 64px;
        color: #cbd5e0;
        margin-bottom: 20px;
    }
    
    /* Call to Action */
    .cta-section {
        width: 100%;
        margin: 0;
        padding: 60px 0;
        background: linear-gradient(135deg, #2c7a4d 0%, #1e5a38 100%);
        color: white;
        text-align: center;
    }
    
    .cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn-donate {
        background: white;
        color: #2c7a4d;
        padding: 12px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .btn-donate:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .btn-volunteer {
        background: transparent;
        color: white;
        padding: 12px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        border: 2px solid white;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .btn-volunteer:hover {
        background: white;
        color: #2c7a4d;
        transform: translateY(-3px);
    }
    
    /* Scroll Animation */
    .scroll-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }
    
    .scroll-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .page-hero h1 {
            font-size: 36px;
        }
        .description-title {
            font-size: 28px;
        }
        .section-header h2 {
            font-size: 28px;
        }
        .oval-item, .value-oval {
            padding: 12px 25px;
            min-width: 170px;
        }
        .oval-item h3, .value-oval h3 {
            font-size: 14px;
        }
    }
    
    @media (max-width: 768px) {
        .page-hero {
            padding: 60px 0;
        }
        .page-hero h1 {
            font-size: 28px;
        }
        .page-hero p {
            font-size: 14px;
        }
        .church-description {
            padding: 40px 0;
        }
        .description-title {
            font-size: 24px;
        }
        .description-text {
            font-size: 15px;
        }
        .services-section, .core-values-section {
            padding: 40px 0;
        }
        .oval-grid {
            gap: 12px;
        }
        .oval-item, .value-oval {
            padding: 10px 20px;
            min-width: 140px;
        }
        .oval-item h3, .value-oval h3 {
            font-size: 12px;
        }
        .section-subtitle {
            font-size: 24px;
        }
        .program-title {
            font-size: 18px;
        }
        .program-content {
            padding: 15px;
        }
        .program-image {
            min-height: 220px;
        }
        .program-description {
            font-size: 13px;
        }
        .btn-learn {
            padding: 8px 25px;
            font-size: 13px;
        }
        .cta-section h2 {
            font-size: 24px;
        }
        .cta-section p {
            font-size: 16px;
        }
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        .btn-donate, .btn-volunteer {
            width: 80%;
        }
    }
    
    @media (max-width: 480px) {
        .oval-item, .value-oval {
            min-width: 120px;
            padding: 8px 15px;
        }
        .oval-item h3, .value-oval h3 {
            font-size: 10px;
        }
        .program-image {
            min-height: 180px;
        }
    }
