/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333333;
}

/* Navbar */
nav {
    background: #ffffff;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #333333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #007BFF;
}

nav a.active {
    border-bottom: 2px solid #007BFF;
}

/* Header Container */
.header {
    position: relative;
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensures the image doesn't overflow */
}

/* Background Image */
.header-bg {
    position: absolute;
    max-width: 100%;
    width: 100%;
    margin: 60px auto;
    height: 100%;
    object-fit: fill;
    z-index: 0;
    /* Pushes it behind the content */
}

/* Header Content */
.header-content {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* App Name */
.header-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    /* Dark text for contrast */
}

/* App Icon */
.app-icon {
    width: 70px;
    /* Fixed width */
    height: 70px;
    /* Fixed height */
    border-radius: 12px;
}

/* Overlay for better readability */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

/* Privacy Policy Container */
.privacy-container {
    max-width: 90%;
    margin: 60px auto;
    padding: 25px;
    background: #F6F9FF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
h1,
h2 {
    color: #1E408B;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Paragraph Styling */
p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #333333;
}

/* Unordered List Styling */
ul {
    padding-left: 5%;
    margin: 15px 0;
    list-style-type: disc;
}

/* List Items Styling */
li {
    font-size: 1.002rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

/* Links */
a {
    color: #5F80BC;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #eaeaea;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1rem;
    color: #333333;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}