/* General Footer Styling */
.site-footer {
    background-color: #11365c;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 50px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Section Styling */
.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ca8c43;
}

.footer-section p,
.footer-section ul {
    font-size: 1rem;
    color: #ecf0f1;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ca8c43;
}

/* Contact Form Section */
.contact-form-section {
    flex: 2;
    min-width: 300px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 8px;
    color: #ecf0f1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1rem;
}

.contact-form input[type="submit"] {
    background-color: #ca8c43;
    color: white;
    cursor: pointer;
    border: none;
}

.contact-form input[type="submit"]:hover {
    background-color: #ca8c43;
}

/* Social Media Icons */
.social-icons a {
    color: white;
    margin-right: 20px;
}

.social-icons i {
    transition: transform 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.1);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: #143555;
    font-size: 12px;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
        min-width: 100%;
    }

    .contact-form-section {
        min-width: 100%;
    }
}
