@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Space+Grotesk:wght@500;600;700&display=swap');

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    background-color: #1a1a1a;
    color: #d1d5db;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    background-color: #1a1a1a;
    padding: 16px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-container img {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #e5e5e5;
}

.nav-links a {
    color: #9ca3af;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.main-container {
    max-width: 750px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.effective-date {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.content-section {
    padding-bottom: 40px;
}

h2 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #d1d5db;
}

ul {
    padding-left: 24px;
    margin-bottom: 24px;
}

li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

strong {
    color: #f3f4f6;
    font-weight: 700;
}

a {
    color: #fca5a5;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ef4444;
    text-decoration: underline;
}

footer {
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    border-top: 1px solid #333;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.home-hero {
    padding: 80px 20px;
}

.home-hero img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.home-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.home-hero p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 0 40px;
}

.home-links {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #e5e5e5;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #e5e5e5;
    border: 1px solid #4b5563;
}

.btn-secondary:hover {
    background-color: #27272a;
    border-color: #6b7280;
    text-decoration: none;
}
