/* Footer */
footer {
    background: #f5f5f5;
    padding: 40px 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.footer-newsletter {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    width: 300px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #f5a623;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #333;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f5a623;
}

.footer-content:not(.row) {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid #ddd;
}

.footer-content.row {
    display: flex !important;
    flex-wrap: wrap;
    margin: 0 auto !important;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
    max-width: 1200px;
    width: 100%;
}

.footer-content.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-column p {
    text-align: left;
    margin: 0;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f5a623;
}

.footer-copyright {
    text-align: center;
    padding: 20px;
    background: #e0e0e0;
    font-size: 14px;
    color: #666;
}
