* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Noto Sans KR', sans-serif;
    text-align: center;
    background-color: #ffffff; 
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,143,0,0.07), rgba(255,193,91,0.37) 35%, rgba(255,203,109,0.35) 65%, rgba(255,244,185,0.22));
    min-height: 100vh;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 40px;
    background: white;
    border-bottom: 2px solid #ddd;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 70px; 
}

.top-nav {
    display: flex;
    justify-content: flex-end; 
    padding: 10px 40px;
    background: white;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 15px; 
}

.top-nav ul li {
    display: inline-block;
}

.top-nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 15px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.top-nav ul li a:hover {
    color: #ff9900;
    border-bottom: 2px solid #ff9900; 
}

.sub-nav {
    text-align: center;
    padding: 10px 0;
    background: white;
    border-bottom: 2px solid #ddd;
}

.sub-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.sub-nav ul li {
    display: inline-block;
}

.sub-nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
    transition: color 0.3s;
}

.sub-nav ul li a:hover {
    color: #ff9900;
    border-bottom: 2px solid #ff9900; 
}

.nav-bar {
    text-align: center;
    padding: 10px 0;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
    align-items: center;
}

.nav-bar ul li {
    display: inline-block;
    position: relative;
}

.nav-bar ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -6px;
    color: black;
    font-weight: bold;
    font-size: 14px;
}

.nav-bar ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 15px;
    padding: 0 6px;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-bar ul li a:hover {
    color: #ff9900;
}

.highlight-text {
    color: #EE7535 !important;
    font-weight: bold;
}


.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;  
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}


.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    width: 100%;
    max-width: 400px; 
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .text-content, .image-content {
        width: 100%;
    }
}

.highlight {
    color: #EE7535;
    font-weight: bold;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;  
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}


.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        width: 100%;
    }
}

footer {
    background: #fff;
    border-top: 2px solid #ddd;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}


.logo-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 150px;

}

.footer-info p {
    font-size: 14px;
    color: #555;
    margin: 3px 0;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-left: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 60px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}


.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
}


.program-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}


.image-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px; 
}

.image-wrapper img {
    max-width: 350px; 
    border-radius: 10px;
}


.text-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px; 
}


.program-list {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.program-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .left-content, .text-content {
        width: 100%;
        text-align: center;
    }

    .text-content {
        padding-left: 0;
    }
}
.mentor-list {
    list-style-type: disc;
    padding-left: 20px;
}

.mentor-list li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}
