   /* Footer Style */
   .footer {
    background-color: #024244;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 40px 0;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    flex: 1;
    padding-right: 20px;
}

.footer__logo img {
    width: 180px;
}

.footer__title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.footer__address, .footer__hours, .footer__contacts p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer__contacts i {
    margin-left: 8px;
}

.footer__social ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.footer__social li {
    margin: 0 10px;
}

.social__link {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.social__link:hover {
    color: #00bcd4;
}

.footer__copyright {
    background-color: #141414;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.footer__copyright p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
}