.footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 20px;
    font-weight: bold;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #000000;
    font-weight: bold;
}

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

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.footer-section a:hover {
    color: #ee5a24;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: #ee5a24;
    transform: translateY(-2px);
    color: white;
}

.social-links a i {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #cccccc;
    padding-top: 20px;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

.footer-bottom a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: #ee5a24;
    text-decoration: none;
}

.footer-logo img {
    background: transparent;
    height: 90px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}









