/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

header {
    background-color: #111;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo a:visited {
    color: white;
}

/* Navigation Menu */
nav ul.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    position: relative;
}

nav ul.menu > li {
    position: relative;
}

nav ul.menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav ul.menu li:hover > ul.submenu {
    display: block;
}

ul.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    min-width: 150px;
    z-index: 1000;
    border-radius: 4px;
}

ul.submenu li {
    border-bottom: 1px solid #444;
}

ul.submenu li:last-child {
    border-bottom: none;
}

ul.submenu a {
    padding: 0.5rem 1rem;
    display: block;
    color: white;
}

ul.submenu a:hover {
    background-color: #333;
}

/* Hero Section */
.hero {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-pic {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* App Support Link */
.app-support a {
    color: blue;
    text-decoration: none;
}

.app-support a:visited {
    color: blue;
}

/* Privacy Policy Page */
.privacy-policy {
    max-width: 800px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    margin-bottom: 1rem;
}

.privacy-policy h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.privacy-policy p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-policy a {
    color: blue;
    text-decoration: none;
}

.privacy-policy a:visited {
    color: blue;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #111;
    color: white;
    font-size: 0.9rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:visited {
    color: white;
}
