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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #111;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* === Content Structure === */
.content-wrapper {
    width: 100%;
    max-width: 1200px;
}

.top-section {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.logo-primary {
    max-width: 200px;
    margin: 0 auto 2rem;
    display: block;
}

/* === Footer === */
.footer {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-link {
    color: #4A5568;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #2D3748;
}

.copyright {
    color: #718096;
}
