/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin-top: 50px;
}



/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 15px 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info, .footer-links {
    list-style-type: none;
    padding: 0;
}

.contact-info h2, .footer-links h2 {
    margin-bottom: 10px;
    color: #333;
}

.contact-info li, .footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info, .footer-links {
        margin-bottom: 15px;
    }
}
