/* 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 !imp;
    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;
}
