/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #1e3d58;
    color: white;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Navigation */
nav {
    background-color: #162b42;
    text-align: center;
    padding: 12px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

nav a:hover {
    background-color: #ff5722;
    color: white;
}

/* Contact Section */
.contact-section {
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    color: #1e3d58;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #1e3d58;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease-in-out;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #ff5722;
    outline: none;
}

/* Button */
button.cta {
    background-color: #1e3d58;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button.cta:hover {
    background-color: #ff5722;
    transform: translateY(-5px);
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #1e3d58;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: #1e3d58;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    font-size: 1rem;
    border-top: 3px solid #ff5722;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #f4b400;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff5722;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        width: 90%;
        padding: 20px;
    }

    nav a {
        font-size: 1rem;
        padding: 10px 15px;
    }

    footer {
        font-size: 0.9rem;
        padding: 20px;
    }
}
