/* ফুটার এরিয়া */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 30px;
    border-top: 4px solid #27ae60;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 30px 20px;
}

.footer-col h3 {
    color: #27ae60;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #34495e;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    color: #95a5a6;
}