/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer-content .footer-contact div i {
        color: #e74c3c
    }

    .footer-content .footer-contact div span {
        margin-left: 10px
    }

    .footer-content .footer-social {
        display: flex;
        flex-direction: column;
    }

    .footer-content .footer-social a {
        color: #bdc3c7;
    }

    .footer-content .footer-social a:hover {
        color: #e74c3c;
        cursor: pointer;
    }

    .footer-sections {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .footer-section h3 {
        margin-bottom: 20px;
        color: #e74c3c;
    }

    .footer-section p {
        color: #bdc3c7;
        margin-bottom: 20px;
    }

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

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

    .footer-section ul li a {
        color: #bdc3c7 !important;
        text-decoration: none;
        transition: color 0.3s;
        cursor: pointer;
    }

    .footer-section ul li a:hover {
        color: #e74c3c;
    }

    .footer-bottom {
        border-top: 1px solid #34495e;
        padding: 20px 0;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        margin-left: 20px;
        transition: color 0.3s;
        cursor: pointer;
    }

    .footer-links a:hover {
        color: #e74c3c;
    }
}

/* Responsive Footer */
@media (max-width: 900px) {
    .main-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 30px 10px;
    }

    .footer-content {
        gap: 30px;
        width: 100%;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .footer-links {
        margin-top: 10px;
    }

    .footer-text {
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .main-footer {
        padding: 20px 5px;
        flex-direction: column-reverse;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-links a {
        margin-left: 10px;
        font-size: 0.95rem;
    }

    .footer-contact > div {
        font-size: 12px;
    }
}