:root {
    --primary: #0a1b3f;
    --secondary: #1c2d57;
    --accent: #8b75ff;
    --text: #e7eaff;
    --light: #f5f7ff;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--primary);
    color: var(--text);

    /* Flex layout to pin footer */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: var(--secondary);
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(145deg, var(--secondary), var(--primary));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.feature {
    width: 30%;
    background: var(--secondary);
    padding: 20px;
    border-radius: 6px;
}

.contact-section {
    padding: 60px 0;

    /* Make this section flex-grow so footer stays at bottom */
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
}

footer {
    margin-top: 60px;
    padding: 20px 0;
    background: var(--secondary);
    color: var(--light);

    /* Stick footer at bottom */
    flex-shrink: 0;
}

footer a {
    color: var(--accent);
}

.legal-text {
    padding: 60px 0;
