/* Set Cairo font for the entire page */
body {
    font-family: 'Cairo', sans-serif;
}
/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: right;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
}

.footer-about, .footer-links, .footer-contact {
    width: 30%;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h3, .footer-contact h3 {
    color: #fff;
    margin-bottom: 10px;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #d91e40;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact i {
    margin-left: 8px;
    color: #d91e40;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin: 0 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d91e40;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-about, .footer-links, .footer-contact {
        width: 90%;
    }
}