footer {
    background: black;
    padding: 100px 40px 30px;
}

.container--footer {
    width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer--left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer--left__footer-title {
    font-family: tilda;
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer--left__footer-text {
    font-family: tilda;
    font-size: 16px;
    line-height: 1.6;
    color: white;
    max-width: 700px;
}

.footer--right {
    display: flex;
    gap: 130px;
    align-items: flex-start;
}

.footer--right__social-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer--right__social-title {
    font-family: tilda;
    font-size: 30px;
    font-weight: 700;
    color: white;    
}    

.footer--right__social-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer--right__social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
}

.footer--right__social-name {
    font-family: tilda;
    font-size: 16px;
    font-weight: 500;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section__faq-title {
    font-family: tilda;
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.faq-section__faq-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-section__faq-link {
    font-family: tilda;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
}

.faq-section__faq-link:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom__copyright {
    font-family: tilda;
    font-size: 14px;
    color: white;
    margin-top: 30px;
}