body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5; /* Light gray background */
}
/* Custom styles for the header background to match the image */
.header-bg {
    /* background-color: #004 Dark blue */
}
.nav-item {
    color: #ffffff; /* White text for nav items */
    padding: 0.5rem 1rem;
    border-radius: 0.375rem; /* rounded-md */
    transition: background-color 0.3s ease;
}
.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Light transparent white on hover */
}
.privacy-content {
    line-height: 1.6;
    color: #333;
}
.privacy-heading {
    font-size: 1.75rem; /* text-3xl */
    font-weight: 600; /* font-semibold */
    color: #1a202c; /* Dark gray */
    margin-bottom: 1rem;
}
.footer-link {
    color: #d1d5db; /* Light gray text for links */
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #ffffff; /* White on hover */
}
.social-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    fill: #ffffff; /* White color for SVG icons */
    transition: fill 0.3s ease;
}
.social-icon:hover {
    fill: #a7f3d0; /* Light green on hover (example) */
}
.h2{
    font-size: 35px;
 
}