/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fbfd;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2540;
}

.logo span {
    color: #007bff;
}

.nav-links a {
    margin-left: 20px;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section (Index) */
.hero {
    background: linear-gradient(135deg, #0a2540 0%, #007bff 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #007bff;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #0a2540;
}

/* Privacy Policy Specifics */
.privacy-content {
    background: white;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-content h1 {
    margin-bottom: 10px;
    color: #0a2540;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.privacy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0a2540;
    font-size: 1.3rem;
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.privacy-content ul,
.privacy-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background-color: #0a2540;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #a0cfff;
}

footer a:hover {
    color: white;
}

.footer-links {
    margin-top: 15px;
}