html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; 
}

.page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}
.toc {
    position: sticky;
    top: 88px;
}
.toc-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #888888;
    margin-bottom: 20px;
    gap: 8px;
}
.toc-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f5e147;
}
.toc-list a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    opacity: 0.45;
    padding: 7px 12px;
    border-radius: 8px;
    display: block;
    transition: opacity 0.2s, background 0.2s;
    line-height: 1.4;
}
.toc-list a.active {
    opacity: 1;
    background: #eceae2;
    font-weight: 600;
}
.toc-divider {
    margin: 20px 0;
    height: 1px;
    background: #e2e0d8;
}
.toc-contact-box {
    background: #111111;
    border-radius: 16px;
    padding: 24px;
    margin-top: 4px;
}
.toc-contact-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 6px;
}
.toc-contact-box a {
    font-size: 13px;
    color: #f5e147;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.content-intro {
    background: #eceae2;
    border-radius: 20px;
    padding: 32px 36px;
    margin-bottom: 48px;
    border: 1px solid #e2e0d8;
}
.content-intro p {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.7);
}
.policy-section-header {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eceae2;
    border: 1px solid #e2e0d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #888888;
    flex-shrink: 0;
    margin-top: 4px;
}
.section-heading {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(17, 17, 17, 0.65);
    padding-left: 52px;
}
.section-body p {
    margin-bottom: 16px;
}
.section-body strong {
    color: #111111;
    font-weight: 600;
}
.policy-list {
    margin: 16px 0;
}
.policy-list li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.65);
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: self-start;
}
.policy-list li a {
    color:#f5e147;
    text-decoration: underline;
}
.policy-list li:last-child {
    margin-bottom: 0px;
}
.policy-list li strong {
    color: #111111;
}
.policy-list li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f5e147;
    flex-shrink: 0;
    margin-top: 9px;
}

.section-divider {
    height: 1px;
    background: #e2e0d8;
    margin: 48px 0;
}
.info-box.dark {
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0 24px 52px;
    border: 1px solid #e2e0d8;
    background: rgba(245, 225, 71, 0.12);
    border-color: rgba(245, 225, 71, 0.5);
}
.box-title {
    font-weight: 700;
    margin-bottom: 10px;
}
.content-intro p a {
    color:#000 ;
    text-decoration: underline;
    font-weight: 600;
}
@media only screen and (max-width: 991px) {
    .page-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .toc {
        position: initial;
    }
    .content-section-area {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .toc-list a {
        font-size: 12px;
        padding: 5px 10px;
    }
    .toc-contact-box {
        padding: 20px;
    }
    .content-intro {
        padding: 20px;
    }
    .content-intro p {
        font-size: 15px;
        line-height: 1.5;
    }
    .policy-section-header {
        gap: 8px;
        margin-bottom: 15px;
    }
    .section-body p {
        font-size: 14px;
        line-height: 22px;
    }
    .section-body {
        padding-left: 0px;
    }
    .section-divider {
        margin: 25px 0;
    }
    .section-heading {
        font-size: 20px;
        line-height: 22px;
    }
    .policy-list li { 
        font-size: 14px;
    }
}





















