/* Footer Styles */
.footer {
    background-color: #f5f5f5;
    padding: 3rem 0 2rem;
    color: #555;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1rem;
}

.footer-feature i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #009688;
}

.social-icons {
    display: flex;
    margin-top: 1rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: #009688;
    color: white;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-item i {
    margin-right: 10px;
    color: #666;
}

.payment-methods {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-feature {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}