html {
    scroll-behavior: smooth;
}

/* Static Pages - Professional Policy Layout */

.static-page-section {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.breadcrumb {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #E8420B;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb .separator {
    font-size: 10px;
}

/* Sidebar Layout */
.page-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .page-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styling */
.page-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background-color: #fff5f2;
    color: #E8420B;
}

.sidebar-nav li.active a {
    background-color: #E8420B;
    color: #fff;
    font-weight: 600;
}

/* Content Area Styling */
.page-content-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.page-content-card h1 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-body {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.page-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.page-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin: 25px 0 10px;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body ul, .page-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-body li {
    margin-bottom: 10px;
}

.page-body strong {
    color: #333;
}

@media (max-width: 768px) {
    .page-content-card {
        padding: 25px 20px;
    }
    
    .page-content-card h1 {
        font-size: 24px;
    }
}
