.msle-title {
    margin-top: 110px;
    width: 100%;
    height: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E9E6DF;
}

.msle-title-img {
    width: 1920px;
    height: 430px;
}

.msle-main-container {
    display: flex;
    width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* 메뉴 플레이스홀더 - 고정 너비 유지 */
.sticky-placeholder {
    width: 280px;
    flex-shrink: 0;
}

.sticky-menu {
    margin-top: 90px;
    width: 230px;
    background-color: #F5F4F0;
    display: block;
    padding: 60px 30px;
    box-sizing: border-box;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    /* 부드러운 트랜지션 효과 추가 */
    transition: box-shadow 0.3s ease;
}

.sticky-menu:hover {
    /* 호버시 그림자 강화 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.sticky-menu.fixed {
    position: fixed;
    width: 230px;
    top: 110px;
    z-index: 5;
}

.sticky-menu li {
    font-size: 16px;
    margin-bottom: 24px;
}

.sticky-menu a {
    color: #4E4B41;
    font-weight: 400;
    text-decoration: none;
}

.sticky-menu a:hover {
    color: #2574B5;
    font-weight: 700;
    text-decoration: underline;
}

/* 활성화된 메뉴 스타일 */
.sticky-menu a.active {
    color: #2574B5; /* 트레이노케이트 브랜드 색상 */
    font-weight: 600;
    background-color: rgba(234, 77, 29, 0.1); /* 브랜드 색상의 반투명 배경 */
    text-decoration: underline;
    text-underline-offset: 3px; /* 밑줄과 텍스트 사이 간격 */
    text-decoration-thickness: 2px; /* 밑줄 두께 */
}

/* 준비중인 링크 스타일 */
.sticky-menu a.coming-soon {
    cursor: pointer;
    position: relative;
}

.sticky-menu a.coming-soon:after {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    background-color: #EA4D1D;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
}

.modal-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 60px;
    color: #EA4D1D;
}


.modal h3 {
    color: #333;
    margin-bottom: 15px;
}

.modal p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-button {
    background-color: #EA4D1D;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.modal-button:hover {
    background-color: #d44316;
}


.content-area {
    flex-grow: 1;
    width: 1000px;
    padding: 40px;
    min-height: 800px;
    margin-top: 90px;
}

.content-area h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-left: 26px;
}

.content-area hr {
    width: 1000px;
}

.content-area h3 {
    color: #383838;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.84px;
    margin-top: 60px;
    margin-bottom: 28px;
    padding-left: 26px;
}

.content-area p {
    padding-left: 40px;
}

.content-area p, .content-area li {
    color: #656565;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.72px;
}

.content-area ul {
    margin-top: 18px;
    padding-left: 60px;
}
.content-area li {
    list-style-type: disc;
}

.content-area button {
    height: 51px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #383838;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.72px;
    margin-top: 60px;
    margin-left: 70px;
    margin-bottom: 70px;
    padding: 10px 20px;
}

.content-area button i {
    padding-left: 10px;
}

.content-area li a {
    color: #2574B5;
    font-weight: 700;
    text-decoration: underline;
}