/* 비전 및 미션 페이지 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 페이지 헤더 */
.page-header {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 80px 0 60px;
    text-align: center;
    color: #ffffff;
}

/* vision 페이지 전용 헤더 배경 */
.vision-header {
    position: relative;
    overflow: hidden;
}

.vision-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../../img/vision.jpg') center/cover no-repeat;
    z-index: 0;
}

.vision-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%); */
    z-index: 1;
}

.vision-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.page-header .subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

/* 핵심 메시지 섹션 */
.core-message {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.message-box {
    padding: 50px 60px;
    border-radius: 12px;
}

.message-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.message-box p {
    font-size: 21px;
    line-height: 1.8;
    color: #333333;
    text-align: center;
}

/* 비전 섹션 */
.vision-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.vision-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.vision-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc143c 0%, #dc143c 100%);
    border-radius: 2px;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-content p {
    font-size: 17px;
    line-height: 2;
    color: #333333;
    text-align: justify;
}

/* 미션 섹션 */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.mission-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.mission-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc143c 0%, #dc143c 100%);
    border-radius: 2px;
}

.mission-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-item {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    color: #dc143c;
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.mission-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

/* 슬로건 섹션 */
.slogan-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.slogan-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.slogan-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc143c 0%, #dc143c 100%);
    border-radius: 2px;
}

.slogan-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.slogan-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.slogan-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

.slogan-item p {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header .subtitle {
        font-size: 16px;
    }

    .core-message {
        padding: 60px 0;
    }

    .message-box {
        padding: 35px 25px;
    }

    .message-box h2 {
        font-size: 22px;
    }

    .message-box p {
        font-size: 16px;
    }

    .vision-section,
    .mission-section,
    .slogan-section {
        padding: 60px 0;
    }

    .vision-section h2,
    .mission-section h2,
    .slogan-section h2 {
        font-size: 24px;
    }

    .vision-content p {
        font-size: 15px;
        text-align: left;
    }

    .mission-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-item {
        padding: 30px 20px;
    }

    .mission-item h3 {
        font-size: 20px;
    }

    .mission-item p {
        font-size: 15px;
    }

    .slogan-item {
        padding: 25px 30px;
    }

    .slogan-item p {
        font-size: 17px;
    }
}
