/* Education 페이지 스타일 */

.education-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 섹션 1: 메인 타이틀 */
.education-section-1 {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.education-section-1 h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #cccccc;
}

.education-main-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.education-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.education-image-container {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 40px auto;
    position: relative;
    min-width: 300px;
    min-height: 300px;
}

.education-image-container img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 300px;
    min-height: 300px;
}

.education-company-name {
    font-size: 36px;
    font-weight: bold;
    margin-top: 40px;
    color: #2d5016;
}

/* 섹션 2: 교육 분야 목록 (첫 번째 그룹) */
.education-section-2 {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.education-fields {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.education-fields-title {
    background-color: #005831;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.8;
    padding: 30px 40px;
    border-radius: 999px;
    text-align: center;
    width: 100%;
    min-width: 300px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

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

.education-field-category {
    text-align: left;
}

.education-field-category h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2d5016;
    background-color: #f5f5dc;
    padding: 8px 12px;
    display: inline-block;
}

.education-field-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.education-field-category li {
    font-size: 18px;
    line-height: 1.8;
    color: #2d5016;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.education-field-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #005831;
    font-size: 20px;
    font-weight: bold;
}

/* 섹션 3: 교육 분야 목록 (두 번째 그룹) + 연락처 */
.education-section-3 {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.education-contact {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.education-contact h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2d5016;
}

.education-contact-info {
    font-size: 18px;
    line-height: 2;
    color: #555;
}

.education-contact-info p {
    margin: 10px 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .education-container {
        padding: 40px 15px;
    }

    .education-section-1,
    .education-section-2,
    .education-section-3 {
        padding: 60px 15px;
        min-height: auto;
    }

    .education-section-1 h1 {
        font-size: 36px;
    }

    .education-description {
        font-size: 16px;
    }

    .education-company-name {
        font-size: 28px;
    }

    .education-fields-title {
        font-size: 16px;
        padding: 25px 30px;
        border-radius: 999px;
        min-width: 250px;
    }

    .education-fields-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .education-field-category h3 {
        font-size: 24px;
    }

    .education-field-category li {
        font-size: 16px;
    }

    .education-contact h3 {
        font-size: 28px;
    }

    .education-contact-info {
        font-size: 16px;
    }

    .education-image-container {
        min-width: 250px;
        min-height: 250px;
    }

    .education-image-container img {
        min-width: 250px;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .education-section-1 h1 {
        font-size: 28px;
    }

    .education-company-name {
        font-size: 24px;
    }

    .education-fields-title {
        font-size: 14px;
        padding: 20px 25px;
        border-radius: 999px;
        min-width: 200px;
    }

    .education-field-category h3 {
        font-size: 20px;
    }

    .education-field-category li {
        font-size: 14px;
    }

    .education-contact h3 {
        font-size: 24px;
    }

    .education-contact-info {
        font-size: 14px;
    }

    .education-image-container {
        min-width: 200px;
        min-height: 200px;
    }

    .education-image-container img {
        min-width: 200px;
        min-height: 200px;
    }
}


