.footer-section {
    background: #2c3e50;
    color: white;
    padding: 50px 0 0;
    margin-top: 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: #f1c40f;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: #f1c40f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-widget p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f39c12;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #e67e22;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 15px;
    position: relative;
}

.footer-links a:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 10px;
}

.footer-links a:hover {
    color: #f39c12;
    text-decoration: none;
    padding-left: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.contact-info i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #f39c12;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #a93226;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0 0;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-widget h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .footer-widget h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-widget p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding-left: 0;
    }
    
    .footer-links a:before {
        display: none;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info p {
        padding-left: 0;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .contact-info i {
        position: static;
        margin-right: 8px;
        width: auto;
    }
    
    .social-links {
        text-align: center;
        margin: 15px 0;
    }
    
    .social-link {
        margin: 0 5px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        text-align: center;
    }
    
    .footer-bottom .text-right {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .footer-bottom p {
        font-size: 13px;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .footer-widget h3 {
        font-size: 20px;
    }
    
    .footer-widget h4 {
        font-size: 14px;
    }
    
    .footer-widget p {
        font-size: 13px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        margin: 0 3px;
    }
}