/* 전체 레이아웃 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif; */
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* 메인 컨텐츠 섹션 */
.MainContents_mainContents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.MainContents_contentsWrap {
    text-align: center;
}

.MainContents_slogan__43Fkt {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 60px;
    display: block;
}

/* 브랜드 설명 리스트 - 기존 스타일 유지 */
.MainContents_brandEx {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
}

.MainContents_brandEx li {
    flex: 0 0 auto;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    position: relative;
}

.MainContents_brandEx li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -65px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #cccccc;
}

.MainContents_brandEx li:hover {
    transform: none;
    box-shadow: none;
}

.MainContents_brandEx li div {
    margin-bottom: 0;
}

.MainContents_brandEx li div p {
    margin: 0;
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}

.MainContents_brandEx li div p:first-child {
    margin-bottom: 8px;
    font-size: 18px;
}

.MainContents_brandEx li div b {
    color: #333333;
    font-weight: 700;
}

.MainContents_brandEx li > p {
    margin: 0;
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}

/* 서브 컨텐츠 섹션 */
.SubContents {
    padding: 80px 20px;
}

.SubContents_textWrap {
    max-width: 1200px;
    margin: 0 auto;
}

.SubContents_textLeft {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.SubContents_textLight {
    font-size: 1.25rem;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    padding: 40px 50px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #FF5722;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .MainContents_mainContents {
        padding: 50px 20px;
    }
    
    .MainContents_slogan__43Fkt {
        max-width: 300px;
        margin-bottom: 40px;
    }
    
    .MainContents_brandEx {
        flex-direction: row;
        gap: 30px;
    }
    
    .MainContents_brandEx li:not(:last-child)::after {
        right: -15px;
    }
    
    .MainContents_brandEx li div p {
        font-size: 15px;
    }
    
    .MainContents_brandEx li div p:first-child {
        font-size: 16px;
    }
    
    .MainContents_brandEx li > p {
        font-size: 15px;
    }
    
    .SubContents_textLeft {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .SubContents_textLight {
        font-size: 1rem;
        padding: 30px 25px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .SubContents_textLeft {
        font-size: 2.5rem;
    }
    
    .SubContents_textLight {
        font-size: 1.15rem;
    }
}