/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
    padding-bottom: 60px;
}

/* Header */
.header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Header Navigation */
.nav {
    margin-top: 10px;
}

.nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
}

.nav a:hover {
    color: #2563eb;
}

/* Sections */
.section {
    padding: 30px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #111827;
    transition: 0.2s ease;
}

.card:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
    transition: 0.2s ease;
}

.cta-button:hover {
    background: #1e40af;
}

/* FTC Disclosure (smallest legally safe size) */
.disclosure {
    font-size: 0.65rem;
    color: #9ca3af;
    margin-top: 4px;
    line-height: 1.2;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
}

.footer-nav {
    margin-bottom: 15px;
}

.footer-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #4b5563;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #2563eb;
}

.footer p {
    font-size: 0.85rem;
    color: #6b7280;
}
