/* About 페이지 스타일 */

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

/* 섹션 1: 로고 + 설립 철학 */
.about-section-1 {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

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

.about-logo-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 60px;
    position: relative;
}

.about-logo-container img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 100px;
}

.about-philosophy {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.about-philosophy h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.about-philosophy .company-name {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2d5016;
}

.about-philosophy .philosophy-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-philosophy .philosophy-cards {
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-philosophy .philosophy-description {
    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;
}

.about-philosophy .mission-vision {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-philosophy .mission-section,
.about-philosophy .vision-section {
    flex: 1;
    text-align: left;
}

.about-philosophy .our-way-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0 20px;
}

.about-philosophy .our-way-divider h2 {
    font-size: 32px;
    font-weight: bold;
    color: #cccccc;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin: 0;
    transform: rotate(180deg);
    letter-spacing: 5px;
}

.about-philosophy .mission-vision h3 {
    font-size: 44px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d5016;
    background-color: #f5f5dc;
    padding: 8px 12px;
    display: inline-block;
}

.about-philosophy .mission-vision ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.about-philosophy .mission-vision li {
    font-size: 26px;
    line-height: 1.8;
    color: #2d5016;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-philosophy .mission-vision li:before {
    content: "∞";
    position: absolute;
    left: 0;
    color: #005831;
    font-size: 20px;
    font-weight: bold;
}

.about-philosophy .mission-vision p {
    font-size: 26px;
    line-height: 1.8;
    color: #2d5016;
    margin-top: 10px;
}

/* 섹션 2: 핵심 가치 */
.about-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;
}

.about-core-value {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-core-value h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #cccccc;
}

.about-core-value .core-value-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.about-core-value .core-value-description {
    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;
}

.about-core-value-image-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    min-width: 300px;
    min-height: 300px;
}

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

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

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

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

    .about-philosophy h1 {
        font-size: 36px;
    }

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

    .about-philosophy .philosophy-text {
        font-size: 16px;
    }

    .about-philosophy .philosophy-description {
        font-size: 16px;
        padding: 25px 30px;
        border-radius: 999px;
        min-width: 250px;
    }

    .about-core-value .core-value-description {
        font-size: 16px;
        padding: 25px 30px;
        border-radius: 999px;
        min-width: 250px;
    }

    .about-philosophy .philosophy-cards {
        max-width: 100%;
        gap: 15px;
    }

    .about-philosophy .mission-vision {
        flex-direction: column;
        gap: 30px;
    }

    .about-philosophy .our-way-divider {
        min-width: auto;
        padding: 20px 0;
    }

    .about-philosophy .our-way-divider h2 {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
        letter-spacing: normal;
    }

    .about-philosophy .mission-vision h3 {
        font-size: 20px;
    }

    .about-core-value h2 {
        font-size: 36px;
    }

    .about-core-value-image-container {
        min-width: 250px;
        min-height: 250px;
    }

    .about-core-value-image-container img {
        min-width: 250px;
        min-height: 250px;
    }
}

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

    .about-philosophy h1 {
        font-size: 28px;
    }

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

    .about-philosophy .philosophy-description {
        font-size: 14px;
        padding: 20px 25px;
        border-radius: 999px;
        min-width: 200px;
    }

    .about-core-value .core-value-description {
        font-size: 14px;
        padding: 20px 25px;
        border-radius: 999px;
        min-width: 200px;
    }

    .about-philosophy .philosophy-cards {
        gap: 12px;
    }

    .about-core-value h2 {
        font-size: 28px;
    }

    .about-core-value-image-container {
        min-width: 200px;
        min-height: 200px;
    }

    .about-core-value-image-container img {
        min-width: 200px;
        min-height: 200px;
    }
}

