@charset "utf-8";

/* Sub Visual */
#sub_visual {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

#sub_visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

#sub_visual .sv_content {
    position: relative;
    z-index: 1;
}

#sub_visual .sv_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

#sub_visual .sv_desc {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
}

/* Sub Navigation (LNB) */
#sub_lnb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
}
#sub_lnb ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
#sub_lnb li a {
    display: block;
    padding: 15px 30px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}
#sub_lnb li.active a,
#sub_lnb li a:hover {
    background: #fff;
    color: #333;
    font-weight: 600;
}

/* Content Layout */
.sub-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 100px;
}

.sub-title {
    text-align: center;
    margin-bottom: 60px;
}
.sub-title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.sub-title p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.sub-title .bar {
    display: block;
    width: 40px;
    height: 3px;
    background: #009688; /* Primary Color */
    margin: 20px auto 0;
}
.ctt_privacy{max-width:1400px;margin:50px auto;}

@media (max-width: 768px) {
    #sub_visual {height: 220px;margin-bottom: 40px;}
    #sub_visual .sv_title { font-size: 28px; }
    .sub-title{margin-bottom:40px}
    #sub_lnb { overflow-x: auto; white-space: nowrap; justify-content: flex-start; }
    #sub_lnb ul { display: inline-flex; min-width: 100%; justify-content: flex-start; }
    #sub_lnb li a { padding: 12px 15px; font-size: 14px; }
    .sib-txt{padding:30px}
    .sub-title p{font-size:14px}
    .ctt_privacy{padding:0 20px 30px}
    .policy-content{padding: 10px !important;font-size: 14px;}
}
