      /* General Styles */
      body {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        font-size: larger;
        background-color: #f4f4f4;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .navbar {
        background-color:  #2d3e50;
        padding: 15px;
        text-align: center;
        position: sticky;
        top: 0;
        z-index: 100;
        border-radius: 6px;
    }

    .navbar .navbar-brand {
        color: white;
        font-size: 1.8em;
        text-decoration: none;
    }

    .menu-toggle {
        display: none;
    }

    .navbar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .navbar-nav .nav-item {
        display: inline-block;
        margin-right: 15px;
    }

    .navbar-nav .nav-link {
        color: white;
        text-decoration: none;
        font-size: 1.2em;
    }

    .navbar-nav .nav-link:hover {
        text-decoration: underline;
    }

    .faq-container {
        padding: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .faq-container h1 {
        font-size: 2.4em;
        margin-bottom: 20px;
        text-align: center;
    }

    .faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .faq-item h2 {
        font-size: 1.5em;
        color: #333;
        margin-bottom: 10px;
    }

    .faq-item p {
        font-size: 1.1em;
        color: #555;
    }

    /* Media Queries */
    @media (max-width: 1200px) {
        .faq-container {
            padding: 25px;
        }
    }

    @media (max-width: 768px) {
        .navbar-nav {
            text-align: center;
            margin-top: 10px;
        }

        .navbar-nav .nav-item {
            display: block;
            margin: 10px 0;
        }

        .faq-container h1 {
            font-size: 2em;
        }

        .faq-item h2 {
            font-size: 1.3em;
        }

        .faq-item p {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .navbar .navbar-brand {
            font-size: 1.5em;
        }

        .faq-container {
            padding: 15px;
        }

        .faq-item {
            padding: 10px;
        }

        .faq-item h2 {
            font-size: 1.2em;
        }

        .faq-item p {
            font-size: 0.95em;
        }

        .navbar-nav .nav-link {
            font-size: 1em;
        }
    }
    /* Footer Section */
footer {
background-color: #2d3e50; /* Dark background color for the footer */
color: white; /* Text color for the footer */
padding: 30px 0; /* Adds space above and below the content */
text-align: center; /* Centers the text */
font-family: Arial, sans-serif; /* Sets the font for the footer */
position: relative; /* Ensures the footer stays at the bottom */
bottom: 0;
border-radius: 6px;
width: 100%;
}

/* Footer Content Styling */
footer .footer-content {
max-width: 1200px; /* Limits the maximum width */
margin: 0 auto; /* Centers the footer content */
padding: 0 20px; /* Adds padding on the left and right */
}

/* Copyright Text */
footer p {
margin: 10px 0; /* Adds margin between paragraphs */
font-size: 16px; /* Set a professional font size */
}

/* Footer Links Styling */
footer a {
color: #ff7043; /* A professional accent color */
text-decoration: none; /* Removes the default underline from links */
font-weight: bold; /* Makes the links bold */
}

footer a:hover {
text-decoration: underline; /* Underlines links on hover */
color: #ff5722; /* Changes color on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
footer {
    padding: 20px 0; /* Adjusts the padding for smaller screens */
}

footer p {
    font-size: 14px; /* Reduces the font size on smaller devices */
}
}

