

.footer {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px 0;
}

.footer-section h4 {
    color: #000;
    margin-bottom: 10px;
}

.footer-section p, .footer-section a, .footer-section ul {
    color: #666;
    text-decoration: none;
    margin: 5px 0;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #666;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

.footer-section form {
    display: flex;
    gap: 10px;
}

.footer-section input[type="email"] {
    flex: 1;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.footer-section button {
    padding: 5px 10px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 3px;
}

.footer-section button:hover {
    background-color: #555;
}
