* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* White background */
    color: #192591; /* Dark blue text */
}


p {
    margin-bottom: 15px; /* Adds 15px space after each paragraph */
}


hr {
    margin: 10px 0;
}


/* Index table styles */

.index_table {
    border-collapse: collapse; /* Ensures no borders are visible */
    border: none; /* Explicitly removes borders */
    margin: 0 auto; /* Centers the table horizontally */
    display: block; /* Allows margin: auto to work for centering */
}

/* Style for table cells */
.index_table td {
    border: none; /* Reset default borders */
    border-right: 1px solid #e0e0e0; /* 1px light grey vertical border between columns */
    padding: 10px; /* Adds spacing between images */
    text-align: center; /* Centers images in cells */
    width: 360px;
}

/* Add left border to the first column */
.index_table td:first-child {
    border-left: 1px solid #e0e0e0; /* 1px light grey border on left of first column */
}

/* Add right border to the last column */
.index_table td:last-child {
    border-right: 1px solid #e0e0e0; /* 1px light grey border on right of last column */
}

/* Add top border to the first row */
.index_table tr:first-child td {
    border-top: 1px solid #e0e0e0; /* 1px light grey border on top of first row */
}

/* Add bottom border to the last row */
.index_table tr:last-child td {
    border-bottom: 1px solid #e0e0e0; /* 1px light grey border on bottom of last row */
}

.index_table img {
    width: 300px; /* Adjust as needed */
    height: auto; /* Maintains aspect ratio */
}

.table-container {
    display: flex; /* Use Flexbox for centering */
    justify-content: center; /* Center horizontally */
    /* Optional: Uncomment the next two lines for vertical centering */
    /* align-items: center; */ /* Center vertically */
    /* min-height: 100vh; */ /* Ensure container takes full viewport height */
}

/* Menu Bar Styles */
.navbar {
    background-color: #ffffff; /* White background */
    padding: 2px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.logo img {
    height: 80px; /* Adjust based on your logo size */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #192591; /* Dark blue text */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #4b5ed7; /* Lighter blue for hover, complements #192591 */
}

.nav-links li a.active {
    color: #e60000; /*#4b5ed7; /* Lighter blue for active page */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #192591; /* Dark blue to match text */
    transition: all 0.3s ease;
}

/* Privacy Policy Styles */
.privacy-policy {
    margin-top: 80px; /* Space for fixed navbar */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
    background-color: #ffffff; /* White background */
    color: #192591; /* Dark blue text */
    line-height: 1.6;
}

.privacy-policy h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #192591;
}

.privacy-policy h2 {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #192591;
}

.privacy-policy p {
    margin-bottom: 15px;
}

.privacy-policy ul {
    list-style-type: disc; /* Circular bullets matching site style */
    margin-bottom: 15px;
    padding-left: 30px; /* Indentation for readability */
}

.privacy-policy ul li {
    margin-bottom: 8px; /* Spacing between bullets */
}

.privacy-policy ul li span {
    font-weight: 600; /* Bold labels for clarity */
}

.privacy-policy a {
    color: #4b5ed7; /* Lighter blue for links, complements #192591 */
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-policy .effective-date {
    font-style: italic;
    color: #5c6ac4; /* Slightly lighter blue for subtle contrast */
    margin-bottom: 20px;
}

/* Optional: Specific class for links to other pages */
a.modern-link {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 123, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

a.modern-link:hover {
    color: #0056b3;
    border-bottom: 1px solid #0056b3;
    font-weight: 500;
}

a.modern-link:visited {
    color: #6f42c1;
    border-bottom: 1px solid rgba(111, 66, 193, 0.5);
}

/* Scroll Top Arrow */
.scroll-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Below modal (1050), above content (100) */
    background-color: #ffffff; /* Matches site background */
    color: #192591; /* Matches site text */
    border: 1px solid #192591;
    border-radius: 50%; /* Circular button */
    width: 40px;
    height: 40px;
    line-height: 40px; /* Center arrow vertically */
    text-align: center;
    font-size: 24px;
    opacity: 0.8; /* Opaque */
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.2s ease;
}

.scroll-top:hover,
.scroll-top:focus {
    opacity: 1; /* Fully opaque on hover/focus */
    color: #4b5ed7; /* Matches site hover color */
    border-color: #4b5ed7;
}

.scroll-top:focus {
    outline: 2px solid #4b5ed7; /* Accessible focus style */
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff; /* White background for mobile menu */
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Adjust privacy policy padding for smaller screens */
    .privacy-policy {
        padding: 20px;
    }

    .privacy-policy ul {
        padding-left: 20px; /* Slightly reduced indentation on mobile */
    }
}