
.footer {
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    padding-bottom: 10px;
    font-family: 'Lexend Deca', sans-serif;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1250px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #f1f1f1;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #ccc;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer .social-icons a {
    color: #ccc;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #fff;
}

.footer .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.8em;
   
}
.footer .footer-bottom p{
    color: #aaa;
}

@media (max-width: 992px) {
    .footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer .footer-container {
        grid-template-columns: 1fr;
    }

    .footer .footer-logo {
        width: 120px;
    }

    .footer .footer-section {
        text-align: center;
    }

    .footer .social-icons {
        justify-content: center;
    }
}

@media (min-width: 350px) and (max-width: 600px) {
    .footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


