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

/* Hero Section with Background Image */
.offerings-hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../images/resources/slider5.jpg');
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.offerings-hero-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.offerings-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.offerings-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.offerings-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Container */
.offerings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Programs Section */
.offerings-programs-section {
    padding: 80px 0;
}

.offerings-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offerings-program-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offerings-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offerings-program-header {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.offerings-program-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: #FF5528;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 85, 40, 0.3);
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.offerings-program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.offerings-program-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.offerings-program-content {
    padding: 0 30px 20px;
}

.offerings-program-includes h4 {
    color: #333;
    font-size: 1.2rem;
    margin-block: 20px;
    font-weight: 600;
    border-bottom: 2px solid #FF5528;
    padding-bottom: 10px;
}

.offerings-program-includes ul {
    list-style: none;
    padding: 0;
}

.offerings-program-includes li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.offerings-program-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF5528;
    font-weight: bold;
    font-size: 1.2rem;
    top: 2px;
}
.offerings-program-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.offerings-program-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offerings-program-includes {
    flex-grow: 1;
}

.offerings-program-action {
    margin-top: auto;
    padding: 0 30px 30px;
}

/* Program Action Button */
.offerings-program-action {
    margin-top: auto;
    padding: 0 30px 30px;
}

.offerings-program-cta {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: #FF5528;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offerings-program-cta:hover {
    background: #e64a23;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 40, 0.4);
}

/* === LMS CTA Section === */
.offerings-lms-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #333 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.offerings-lms-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.offerings-lms-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.offerings-lms-cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.offerings-primary-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: #FF5528;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 85, 40, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offerings-primary-cta-btn:hover {
    background: #e64a23;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 85, 40, 0.4);
    color: white;
}

.offerings-btn-text {
    font-size: 1.1rem;
}

.offerings-btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.offerings-primary-cta-btn:hover .offerings-btn-arrow {
    transform: translateX(5px);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .offerings-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offerings-program-card {
        margin: 0 10px;
    }
    
    .offerings-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .offerings-hero-content p {
        font-size: 1rem;
    }
    
    .offerings-container {
        padding: 0 15px;
    }
    
    .offerings-lms-cta-section {
        padding: 60px 0;
    }
    
    .offerings-primary-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .offerings-btn-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .offerings-primary-cta-btn {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .offerings-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .offerings-programs-section {
        padding: 40px 0;
    }
    
    .offerings-lms-cta-section {
        padding: 40px 0;
    }
    
    .offerings-programs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .offerings-program-header {
        padding: 30px 20px;
    }
    
    .offerings-program-content {
        padding: 0 20px 15px;
    }
    
    .offerings-program-action {
        padding: 0 20px 25px;
    }
}