/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
}

.footer-top {
    padding: 40px 0;
    margin: 0 89px;
    border-bottom: 1px solid #34495e;
}

footer .container {
    max-width: 2200px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand,
.footer-contact,
.footer-form {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item ion-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #3498db;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.contact-link:hover {
    text-decoration: underline;
}

address {
    font-size: 14px;
    color: #bdc3c7;
    font-style: normal;
}

.social-list {
    list-style: none;
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    font-size: 40px;
    padding: 5px;
    text-decoration: none;
}

.social-link:hover {
    color: #3498db;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.copyright {
    font-size: 12px;
    color: #bdc3c7;
    text-align: center;
    flex: 1;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-bottom-link {
    color: #bdc3c7;
    font-size: 12px;
    text-decoration: none;
}

.footer-bottom-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    footer.container {
        flex-direction: column;
        text-align: start;
        justify-content: flex-start;
    }

    .footer-brand,
    .footer-contact,
    .footer-form {
        margin-bottom: 30px;
    }

    .social-list {
        justify-content: left;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-list {
        flex-direction: column;
        gap: 10px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.6;
        max-width: 230px;
        color: #bdc3c7;
        margin-bottom: 20px;
    }

}