/* Education Intro Section */
.education-intro {
    background-color: #2f3640;
    color: #fff;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.education-intro h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Education Types Grid */
.education-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.education-type {
    text-align: left;
}

.type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.type-header i {
    font-size: 1.5rem;
    color: #c0976b;
}

.type-header h2 {
    font-size: 1.8rem;
    font-weight: normal;
}

.type-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 968px) {
    .education-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .education-intro h1 {
        font-size: 2.5rem;
    }

    .type-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .education-intro {
        padding: 6rem 1rem 3rem;
    }

    .type-image {
        height: 300px;
    }
}

/* Certified Courses Section */
.certified-courses {
    background-color: #e6e3dc;
    padding: 6rem 2rem;
}

.certified-courses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: normal;
    color: #333;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.course-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
}

.course-title h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.course-title p {
    color: #666;
    font-size: 1.1rem;
}

.course-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.trainer-course {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .certified-courses {
        padding: 4rem 1.5rem;
    }

    .certified-courses h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Workshops Section */
.workshops {
    background-color: #e6e3dc;
    padding: 6rem 2rem;
}

.workshops h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: normal;
    color: #333;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.workshop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.workshop-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 1.5rem;
}

.workshop-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

.highlight {
    color: #333;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .workshops {
        padding: 4rem 1.5rem;
    }

    .workshops h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .workshop-image {
        height: 300px;
    }
}

/* Add separator to the footer */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        #c0976b 30%,
        #c0976b 70%,
        transparent
    );
    opacity: 1;
} 
