/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header */
header {
    color: white;
    text-align: center;
    padding: 10px 0;
    background-color: rgba(0, 51, 102, 0.8);
    position: relative;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Navigation Menu */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
}

nav ul li a, .dropbtn {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: bold;
}

nav ul li a:hover, .dropbtn:hover {
    background-color: #003366;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 51, 102, 0.9);
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #003366;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Support Section */
.support-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.support-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #003366;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.service-item {
    background-color: #ffffff;
    color: #003366;
    border-radius: 10px;
    padding: 2rem;
    width: calc(50% - 2rem);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background-color: rgba(0, 51, 102, 0.8) ;
    padding: 10px 0px;
    text-align: center;
    /* background-color: #ffffff; */
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-section p {
    font-size: 1.2rem;
    color: white;
}

/* Footer */
footer {
    text-align: center;
    /* padding: 20px; */
    /* background-color: rgba(0, 51, 102, 0.8); */
    color: wheat;
}
