/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

/* Header styles */
header {
    background-color: #003366;
    padding: 20px 0;
    color: white;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #003366;
}

.contact-section h3 {
    color: #003366;
    margin-top: 20px;
}

.contact-section p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.contact-section ul {
    list-style-type: none;
    padding-left: 0;
}

.contact-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-section a {
    color: #007bff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Form styling */
.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 1.1em;
    color: #333;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 4px;
    cursor: pointer;  /* Ensures pointer cursor on button hover */
}

button:hover {
    background-color: #218838;
}

/* Social links */
.social-links a {
    margin: 0 10px;
    color: #007bff;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #003366;
    padding: 10px;
    color: white;
    text-align: center;
}

/* Remove cursor animation */
* {
    cursor: not-allowed !important;  /* Ensures no special cursor effect */
}
