.footer-section {
    background: #1e1e2f;
    color: #dcdcdc;
    font-size: 15px;
    line-height: 1.7;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    max-width: 380px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

.footer-social a {
    display: inline-block;
    font-size: 24px;
    margin-right: 10px;
    color: #dcdcdc;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact a,
.footer-contact span {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: #151521;
    font-size: 14px;
}