       /* General Styles */
body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f0ad4e;
}

.hero {
    background: #e9ecef;
    color: #495057;
    text-align: center;
    padding: 50px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #35424a;
}

/* Policy Details */
.policy-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.policy-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* FAQ Accordion */
.faq {
    margin-top: 30px;
}

.accordion-container {
    margin-top: 10px;
}

.accordion {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:hover {
    background-color: #e9ecef;
}

.accordion-button:focus {
    outline: 2px solid #007bff;
}

.accordion-content {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

.accordion-content p {
    margin: 10px 0;
}

.accordion-button .icon {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"%3E%3Cpath d="M12 8V16M12 8H16M12 8H8M12 16H16M12 16H8M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
    background-size: cover;
    transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 30px;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .policy-details {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }
}



.info-button {
    display: inline-block;
    padding: 12px 18px;
    margin-top: 10px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32); /* Green gradient */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.info-button:hover {
    background: linear-gradient(135deg, #45a049, #388E3C); /* Darker green gradient on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.info-button:active {
    transform: translateY(1px); /* Pressed effect */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Shadow changes when pressed */
}

    .footer {
    background-color: #35424a; /* Dark background for the footer */
    color: white; /* Text color */
    padding: 40px 20px; /* Padding for the footer */
}

.footer-container {
    max-width: 12000px; /* Max width for the footer */
    margin: auto; /* Center the footer */
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Space between sections */
}

.footer-section {
    flex: 1; /* Flex-grow for equal distribution */
    min-width: 250px; /* Minimum width for sections */
    margin: 10px; /* Margin between sections */
}

.footer-section h4 {
    font-size: 1.5em; /* Heading size */
    margin-bottom: 15px; /* Space below headings */
    border-bottom: 2px solid #e74c3c; /* Underline effect */
    padding-bottom: 10px; /* Space below the heading */
}

.footer-section p,
.footer-section ul {
    font-size: 1em; /* Font size for text */
    margin-bottom: 10px; /* Space between paragraphs */
    line-height: 1.6; /* Line height for readability */
}

.footer-section a {
    color: #e74c3c; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for link color */
}

.footer-section a:hover {
    color: #ffffff; /* Change color on hover */
    text-decoration: underline; /* Underline on hover */
}

.footer-section ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 5px 0; /* Space between list items */
}

.footer form {
    display: flex; /* Flexbox for the form */
    flex-direction: column; /* Stack elements vertically */
}

.footer input[type="email"] {
    padding: 10px; /* Padding for input */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 10px; /* Space below input */
}

.footer button {
    padding: 10px; /* Padding for button */
    background-color: #e74c3c; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.footer button:hover {
    background-color: #35424a; /* Darken button on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections on small screens */
        align-items: center; /* Center align sections */
    }
    .footer-section {
        text-align: center; /* Center text on small screens */
    }
}
