body {
    font-family: Arial, sans-serif;
}
.header {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2d3748;
}
.nav {
    display: none; /* Hide by default for mobile */
}
.nav a {
    margin-left: 15px;
    padding: 8px 10px; /* Adding padding to enlarge the clickable area */
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s, box-shadow 0.3s;
    border-radius: 15px; /* Adding rounded corners */
}
.nav a:hover {
    color: #4a5568;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #edf2f7; /* Optional: Change background color on hover */
}
.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #2d3748;
}
.menu-button svg {
    height: 20px;
    width: 20px;
}
@media (min-width: 768px) {
    .nav {
        display: flex; /* Show nav items on larger screens */
    }
    .menu-button {
        display: none; /* Hide mobile menu button on larger screens */
    }
    .mobile-menu {
        display: none; /* Ensure mobile menu is hidden on larger screens */
    }
}
.mobile-menu {
    display: none; /* Hide by default */
}
.mobile-menu a {
    display: block;
    padding: 8px 16px;
    color: #2d3748;
    text-decoration: none;
}
.mobile-menu a:hover {
    background-color: #edf2f7;
}
/* Card Styles */
.card {
    padding: 16px;
    margin: 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Card Content */
.card-content {
    margin: 0;
    padding: 0;
    text-align: center;
}
.center-link {
    display: block;
    margin: 0 auto;
    text-align: center;
    align-content: center;
}


/* MUST BE ADDED TO ALL HEADER TO FIX PAGINATION ON ALL PAGES AND UPDATE THE PAGE PAGINATION LINK REFERENCE */
.pagination {
    display: flex;
    justify-content: center; /* Centers pagination links */
    margin-top: 20px;
}

.pagination .page-link, .pagination .page-item {
    padding: 8px 12px;
    margin: 0 2px;
    font-size: 14px; /* Adjust font size */
}

.pagination .page-item.active .page-link {
    background-color: #007bff; /* Active page background */
    color: white; /* Active page text color */
}

/* MUST BE ADDED TO ALL HEADER TO FIX PAGINATION ON ALL PAGES AND UPDATE THE PAGE PAGINATION LINK REFERENCE */




/* THIS IS TO FORMAT AND STYLE MY P TAGS AND H2 FOR PAGE TEXT CONTENT NOVEMBER 22 2024 */

/* General Styles for About Us and Terms of Use Sections */
.container {
    padding: 15px; /* Add space around the content */
    max-width: 900px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the container */
}

/* Style for Back Link */
.container a {
    font-size: 1rem; /* Make the text legible */
    /* color: #007bff; Blue color for links */
    /* color: #007bff;  */
    text-decoration: none; /* Remove underline */
    margin-bottom: 5px; /* Add spacing below the link */
    display: inline-block;
    transition: color 0.3s ease;
}

.container a:hover {
    /* color: #0056b3; Darker shade on hover */
}

/* Main Heading (h1) Style */
.container h1 {
    font-family: 'Georgia', serif; /* Elegant font */
    font-size: 2.5rem; /* Larger font size */
    color: #333; /* Neutral color */
    text-align: center; /* Center align the title */
    margin-bottom: 20px; /* Space below the title */
    text-transform: uppercase; /* Uppercase styling for emphasis */
}

/* Subheading (h2) Style */
.container h2 {
    font-family: 'Arial', sans-serif; /* Clean and modern font */
    font-size: 1.8rem; /* Slightly smaller than h1 */
    color: #444; /* Slightly lighter shade for contrast */
    margin-top: 20px; /* Space above the subheading */
    margin-bottom: 15px; /* Space below the subheading */
    text-transform: capitalize; /* Capitalize each word */
    border-bottom: 2px solid #ddd; /* Underline for separation */
    padding-bottom: 5px;
}

/* Paragraph (p) Style */
.container p {
    font-family: 'Roboto', sans-serif; /* Professional sans-serif font */
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.8; /* Enhance readability with proper line height */
    color: #555; /* Medium gray color */
    margin-bottom: 20px; /* Space below each paragraph */
    text-align: justify; /* Align text evenly on both sides */
}

/* Horizontal Rule (hr) Style */
.container hr {
    border: 0;
    height: 1px;
    background-color: #ddd; /* Light gray divider */
    margin: 20px 0; /* Space around the divider */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .container h1 {
        font-size: 2rem; /* Reduce font size for h1 on mobile */
    }

    .container h2 {
        font-size: 1.5rem; /* Adjust h2 size for mobile */
    }

    .container p {
        font-size: 0.95rem; /* Slightly smaller font for better fit */
    }
}

/* THIS IS TO FORMAT AND STYLE MY P TAGS AND H2 FOR PAGE TEXT CONTENT NOVEMBER 22 2024 */


