
/* Contact Form */
.contact-section {
    padding: 60px 40px;
    text-align: center;
}

.contact-section h2 {
    color: #1a3664;
    margin-bottom: 30px;
}

form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1a3664;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #1a3664;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.btn {
    background-color: #1a3664;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.btn:hover {
    background-color: #16325c;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 30px;
    right: -300px;
    z-index: 9999;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.toast.show {
    right: 45px;
}