/* General Setup */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #fff;
}

.container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    position: sticky;
    top: 40px;
    height: fit-content;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-right: 40px;
}

.toc-title {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 12px;
}

.sidebar a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

.sidebar a:hover {
    color: #4b49ac; /* Highlighting color */
}

/* Content Layout */
.content {
    flex: 1;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.effective-date {
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
}

h3 {
    font-size: 18px;
    margin-top: 25px;
}

section {
    margin-bottom: 60px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 20px;
}

/* Special Box Styling (image j.JPG) */
.inquiry-box {
    background-color: #f5f7f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid #eef0f2;
}

.inquiry-box h3 {
    margin-top: 0;
}

.link-text {
    color: #4b49ac;
    font-weight: bold;
    cursor: pointer;
}

.footer-note {
    font-size: 13px;
    margin-top: 20px;
    color: #555;
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        position: relative;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        top: 0;
    }
}