.custom-footer {
    background-color: #1a202c;
    color: #f7fafc;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.custom-footer .footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.custom-footer h2, .custom-footer h3 {
    color: #fff;
    margin-bottom: 10px;
}

.custom-footer p, .custom-footer a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
}

.custom-footer a:hover {
    color: #fff;
}

.custom-footer .flex.space-x-4 a {
    font-size: 20px;
    transition: color 0.3s;
}

.custom-footer .flex.space-x-4 a:hover {
    color: #63b3ed;
}

.custom-footer iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    height: 250px;
}

.custom-footer .text-center {
    margin-top: 20px;
    color: #a0aec0;
    font-size: 12px;
    text-align: center;
    width: 100%;
}

/* Footer responsiveness for smaller screens */
@media (max-width: 768px) {
    .custom-footer {
        flex-direction: column;
        padding: 20px;
    }

    .custom-footer .footer-section {
        min-width: 100%;
        margin-bottom: 15px;
    }
}
