* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Epilogue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 300px;
    background-color: #fff;
    border-right: 1px solid #e5e5e5;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.sidebar-nav a:hover {
    background-color: #f5f5f5;
}

.sidebar-nav a.active {
    background-color: #e8f4f8;
    color: #1a73e8;
    font-weight: 600;
}

.dropdown-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

.dropdown-icon.expanded {
    transform: rotate(180deg);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    min-width: 0;
    padding: 40px;
    max-width: calc(100vw - 300px);
    overflow-x: auto;

}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    text-align: right;
    margin-bottom: 30px;
}

.content-body {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 50px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 30px;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #1a73e8;
    padding-bottom: 10px;
}

.content-body h2 {
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 8px;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body p {
    margin-bottom: 15px;
    text-align: justify;
}

.content-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-body li {
    margin-bottom: 8px;
}

.highlight {
    text-align: right;
    padding: 10px;
    margin: 20px 0;
    background-color: #f8f9fa;
    border-left: 4px solid #1a73e8;
}

.contact-info {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #1a73e8;
}
.bottom-bar .staunch-info{margin-top:20px;}
/* Small laptops */
@media (max-width: 1024px) {
    .sidebar {
        width: 250px;
    }

    .main-content {
        padding: 30px;
        max-width: calc(100vw - 250px);
    }
}

/* Tablets and mobile devices */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 100%;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
        order: 2;
        box-shadow: none;
        position: relative;
        height: auto;
    }

    .main-content {
        padding: 20px;
        order: 1;
        /* Content above sidebar */
        max-width: 100%;
    }

    .content-header h1 {
        font-size: 2rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .main-content {
        padding: 15px;
    }

    .content-header h1 {
        font-size: 1.8rem;
    }
}