/* Deliverables Page */
.deliverables-hero {
    background: url('../../../images/general/banner-courses.webp') no-repeat center center/cover;
    /* Adjusted path for modules */
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.deliverables-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay */
}

.deliverables-hero h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.deliverables-hero p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.deliverables-content {
    padding: 60px 0;
    background: #fff;
}

.deliverable-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: var(--light-bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-color);
    overflow: hidden;
}

.deliverable-item:nth-child(even) {
    flex-direction: row-reverse;
    /* Alternate image and text */
}

.deliverable-image {
    width: 30%;
    height: 200px;
    object-fit: cover;
}

.deliverable-content {
    width: 70%;
    padding: 30px;
}

.deliverable-content h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.deliverable-content p {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.deliverable-content ul {
    list-style: none;
    padding: 0;
}

.deliverable-content ul li {
    margin-bottom: 8px;
}

.deliverable-content ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.deliverable-content ul li a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}