:root {
    --primary: #EAF4F8;
    --secondary: #1F6F8B;
    --accent-1: #FFFFFF;
    --accent-2: #5AA469;
    --accent-3: #4B5563;
    --accent-4: #1F2937;
    --accent-5: #8b5cf6;
}

body {
    font-family: Arial, sans-serif;
    background: var(--accent-1);
    color: var(--accent-4);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    width: 100%;
    background: var(--primary);
    flex: 1;
}

.container {
    width: 75%;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

nav {
    width: 100%;
    background: var(--secondary);
}

.nav-content {
    width: 75%;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}

#sign-in {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--accent-4);
    border: 1px solid var(--accent-4);
    border-radius: 12px;
    text-decoration: none;
}

footer {
    background: var(--accent-4);
    color: white;
    width: 100%;
}

.footer-content {
    width: 75%;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
}