/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #82b1db, #00f2fe);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background: #003366;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Contact Page Container */
.contact-container {
    padding: 20px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info p a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
}

.contact-info p a:hover {
    text-decoration: underline;
}

/* Social Media Section */
.social-media {
    text-align: center;
    margin-bottom: 20px;
}

.social-media h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #0077cc;
    color: #fff;
    border-color: #0077cc;
}

/* Contact Form */
.contact-form {
    margin-bottom: 20px;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form button {
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background: #0077cc;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #005fa3;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    background: #003366;
    color: #fff;
    padding: 10px 0;
}

footer p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}