.custom-footer {
    background-color: #1e90ff;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 0;
}

.custom-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-footer-column {
    flex: 1;
    padding: 20px;
    min-width: 200px;
}

.custom-footer-column h3 {
    margin-bottom: 20px;
}

.custom-footer-column p,
.custom-footer-column ul,
.custom-footer-column li,
.custom-footer-column a {
    color: #fff;
}

.custom-footer-column ul {
    list-style-type: none;
    padding: 0;
}

.custom-footer-column li {
    margin-bottom: 10px;
}

.custom-footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-footer-column a:hover {
    color: #00a1ff;
}

.custom-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.custom-social-icons a {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
}

.custom-social-icons a:hover {
    color: #00a1ff;
}

.custom-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #444;
    padding: 20px 0;
}

.scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: olive;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s ease;
}

.scrollTopBtn:hover {
    background-color: darkolivegreen;
    transform: scale(1.1);
}

.custom-footer-bottom a:hover {
    color: #00a1ff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .custom-footer-container {
        flex-direction: column;
        align-items: center;
    }
    .custom-footer-column {
        text-align: center;
    }
    .custom-footer-bottom {
        flex-direction: column;
    }
    .custom-footer-bottom ul {
        justify-content: center;
    }
}
