.btn-primary {
        background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
        color: white;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        text-decoration: none;
        font-size: 16px;
        line-height: 1.5;
    }

    .btn-primary:hover {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        transform: translateY(-2px);
    }

    .btn-secondary {
        background: transparent;
        color: #DC2626;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 12px;
        border: 2px solid #DC2626;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        font-size: 16px;
        line-height: 1.5;
    }

    .btn-secondary:hover {
        background: #DC2626;
        color: white;
        transform: translateY(-2px);
    }

    .btn-outline {
        background: transparent;
        color: #DC2626;
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 10px;
        border: 2px solid #DC2626;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
    }

    .btn-outline:hover {
        background: #DC2626;
        color: white;
        transform: translateY(-2px);
    }

    .section-padding {
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }

        .btn-primary,
        .btn-secondary {
            padding: 12px 24px;
            font-size: 14px;
            width: 100%;
            margin-bottom: 10px;
        }
    }

    /* Swiper Carousel Styles */
    .hero-swiper {
        width: 100%;
        height: 80vh;
        min-height: 600px;
    }

    .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .swiper-slide-content {
        position: relative;
        z-index: 20;
        text-align: center;
        color: white;
        max-width: 1200px;
        padding: 0 20px;
    }

    /* Swiper Navigation Customization */
    .swiper-button-next,
    .swiper-button-prev {
        color: white !important;
        background: rgba(255, 255, 255, 0.2);
        width: 50px !important;
        height: 50px !important;
        border-radius: 50%;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px !important;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    /* Swiper Pagination Customization */
    .swiper-pagination-bullet {
        width: 12px !important;
        height: 12px !important;
        background: rgba(255, 255, 255, 0.5) !important;
        opacity: 1 !important;
    }

    .swiper-pagination-bullet-active {
        background: white !important;
        transform: scale(1.2);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero-swiper {
            height: 70vh;
            min-height: 500px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 40px !important;
            height: 40px !important;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 16px !important;
        }
    }

    /* Program Cards */
    .program-card {
        transition: all 0.3s ease;
        opacity: 1 !important;
    }

    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Program Section Styles */
    .program-section {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

    .program-filter-btn {
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .program-filter-btn.active {
        background: #DC2626;
        color: white;
    }

    .program-category-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
    }

    .program-featured-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 10;
    }

    .program-image-container {
        height: 200px;
        overflow: hidden;
    }

    .program-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .program-description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .program-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .program-feature-tag {
        background: #fef2f2;
        color: #dc2626;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .program-actions {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Text Styles */
    .font-serif {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        line-height: 1.2;
    }

    .text-shadow {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* FAQ Section Styles */
    .faq-item {
        transition: all 0.3s ease;
    }

    .faq-item.active {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f8fafc;
    }

    .faq-answer {
        max-height: 0;
        opacity: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        opacity: 1;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    /* Smooth transitions */
    .faq-item * {
        transition: all 0.3s ease;
    }