/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #002244; /* Dark blue background */
    line-height: 1.6;
}

/* Header Styles */
header {
    text-align: center;
    background: linear-gradient(145deg, #001d3d, #003a6d);
    padding: 50px 20px;
}

.header-content h1 {
    font-size: 3rem;
    margin: 0;
    color: #00d4ff;
    animation: fadeInDown 1s ease-in-out;
}

.header-content p {
    margin: 10px 0;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    color: #001f3f;
    background-color: #00d4ff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #00b3e6;
    transform: scale(1.05);
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #002a5a;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #003a6d;
    color: #00d4ff;
    border-radius: 5px;
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff;
    animation: fadeIn 1s ease-in-out;
}

section p {
    margin: 10px auto;
    max-width: 600px;
}

.account-types {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.account-card {
    background: #002a5a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    animation: fadeInUp 1s ease-in-out;
}

.account-card h3 {
    color: #00d4ff;
    margin-bottom: 10px;
}

/* FAQ Styles */
.faq h4 {
    color: #00d4ff;
    margin-top: 20px;
}

.faq p {
    margin-bottom: 10px;
}

/* Contact Form Styles */
form {
    background: #002a5a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: auto;
}

form label {
    display: block;
    margin: 10px 0 5px;
    color: #00d4ff;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

form input, form textarea {
    background: #003a6d;
    color: #fff;
}

form button {
    background: #00d4ff;
    color: #001f3f;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

form button:hover {
    background: #00b3e6;
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background: #001f3f;
}

footer p {
    margin: 10px 0;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #00d4ff;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00b3e6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
