/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Header & Footer */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: black;
    padding: 0px 0px;
    border-bottom: 1px solid #ddd;
}

.logo {
    max-width: 120px;
}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0 25px;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
}

nav a:hover {
    background-color: #000;
    color: white;
}

/* Section Styling */
section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

/* Button Link */
.button-link {
    display: inline-block;
    margin-top: 20px;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1em;
    transition: background 0.3s ease;
    text-align: center;
}

.button-link:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 10px 0;
        padding: 12px 20px;
    }

    section {
        margin: 20px;
        padding: 15px;
    }
}

/* Footer */
.footer {
    background-color: white;
    color: black;
    text-align: center;
    flex-direction: column;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid #ddd;
}

.footer a {
    color: #1a1f2b;
    margin: 0 0.5rem;
}

.footer a:hover {
    text-decoration: underline;
}

.account-cta-container {
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
    padding: 0 20px;
}

.cta-button {
    background-color: #000000; /* Navy */
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #003366;
}