.footer {
    width: 100%;
    margin: 80px auto 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 3vw;
    padding: 50px 60px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Первый столбец */
.footer-logo {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 3vh;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info p {
    margin-bottom: 12px;
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.5;
}

.contact-info a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #FFFFFF;
}

/* Второй столбец */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Третий столбец */
.newsletter-title {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.2s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    width: 100%;
    padding: 14px 20px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C365A;
    transition: background-color 0.2s, transform 0.1s;
}

.newsletter-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.02);
}

.newsletter-button:active {
    transform: scale(0.98);
}

.newsletter-button .arrow-symbol {
    font-size: 18px;
    margin-left: 5px;
}

/* Нижняя строка */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer {
        padding: 40px 30px 25px;
        margin-top: 60px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .newsletter-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px 20px;
        margin-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info p {
        font-size: 14px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .newsletter-title {
        font-size: 16px;
        text-align: center;
    }

    .newsletter-input {
        padding: 12px 18px;
        font-size: 14px;
    }

    .newsletter-button {
        padding: 12px 18px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 15px 15px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .newsletter-input {
        padding: 10px 15px;
        font-size: 12px;
    }

    .newsletter-button {
        padding: 10px 15px;
        font-size: 12px;
    }
}