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

/* Body and Container Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header Styling */
header {
    background-color: #004080;
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 1.5em;
}

header nav ul {
    display: flex;
    list-style: none;
    flex: 1;
}

header nav ul li {
    margin-right: 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #0066cc;
}

/* Hero Section Styling */
#hero {
    background-color: #004080;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 50px;
}

#hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#hero .cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

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

/* Service Sections Styling */
#services {
    padding: 40px 0;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #004080;
    font-size: 2em;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    text-align: center;
    min-width: calc(33.333% - 20px);
}

.card h3 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.card p {
    margin-bottom: 20px;
    font-size: 1em;
}

.card .cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

/* Support Section Styling */
#support {
    background-color: #eef2f7;
    padding: 40px 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 8px;
}

#support h2 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 2em;
}

#support p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.support-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.support-link:hover {
    background-color: #003366;
}

/* FAQ and Guides Sections Styling */
#faq, #guides, #contact {
    padding: 40px 0;
}

#faq h2, #guides h2, #contact h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #004080;
    font-size: 2em;
}

.faq-item, .guide-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.faq-item h3, .guide-item h3 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.faq-item p, .guide-item p {
    font-size: 1em;
}

/* Footer Styling */
footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

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

    header nav ul {
        flex-direction: column;
        width: 100%;
    }

    header nav ul li {
        margin: 10px 0;
    }

    #hero {
        padding: 80px 20px 40px;
    }

    #hero h2 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1em;
    }

    #hero .cta {
        padding: 10px 20px;
        font-size: 1em;
    }

    .card {
        min-width: calc(50% - 20px);
    }

    .faq-item, .guide-item {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .card {
        min-width: calc(100% - 20px);
    }
}

