/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    color: #334155; /* slate-700 */
    background: #ffffff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}
.logo {
    cursor: pointer;
  }
  
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
}

.nav-links li .btn-dark {
    padding: 8px 16px;
    background-color: #374151;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
}

/* Legal Content Container */
.legal-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Main Heading */
.legal-container h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 36px;
    color: #0f172a; /* slate-900 */
}

/* Section Titles (e.g. 1. Introduction) */
.legal-container p {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #334155; /* slate-700 */
    margin-bottom: 18px;
}

/* Section title inside paragraph */
.legal-container p strong {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #111827; /* slate-900 */
    margin-top: 26px;
    margin-bottom: 6px;
}

/* Reset any unintended markers */
.legal-container p::before { content: none; }

/* Divider */
hr {
    margin: 50px auto;
    width: 85%;
    border: none;
    height: 1px;
    background-color: #e5e7eb;
}

.footer {
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 20px;
    background: #fff;
  }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        justify-content: center;
        padding: 14px 20px;
    }
    
    .logo {
        justify-content: center;
    }
}