.fd-footer {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
    background-color: #006496; 
}

.fd-footer__newsletter {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fd-newsletter__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.fd-newsletter__form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.fd-newsletter__input {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
}

.fd-newsletter__submit {
    background-color: #ff8200;
    color: white;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 2px;
    transition: filter 0.2s;
    pointer-events: none;
}

.fd-newsletter__submit:hover {
    filter: brightness(1.1);
}

.fd-footer__main {
    padding: 60px 20px;
}

.fd-footer__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fd-footer__recommendations{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.fd-footer__recommendations-wrapper{
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.fd-footer__recommendation-item{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
}

.fd-footer__social-grid-wrapper{
    display: flex;
    justify-content: space-between;
}

.fd-footer__brand {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fd-footer__logo {
    height: 60px;
    margin-bottom: 20px;
}

.fd-footer__copyright {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.fd-footer__social {
    margin-bottom: 3rem;
}

.fd-footer__social p {
    font-weight: bold;
    margin-bottom: 10px;
}

.fd-social__icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

.fd-footer__links-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fd-links__column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.fd-links__column ul {
    list-style: none;
    padding: 0;
}

.fd-links__column li {
    margin-bottom: 10px;
}

.fd-links__column ul li div {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
    cursor: pointer;
    width: fit-content;
}

.fd-links__column ul li div:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .fd-newsletter__form {
        flex-direction: column;
    }

    .fd-footer__social-grid-wrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 600px) {
    .fd-footer__links-grid {
        grid-template-columns: 1fr;
    }
}