.footer {
    background-color: #f0f7ff;
    padding: 60px 0 0;
    color: #262626;
    font-family: var(--font-family);
}

.footer-col-title {
    font-size: 24px;
    font-weight: 600;
    color: #0056b3;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-links a {
    display: block;
    font-size: 16px;
    color: #262626;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
}

.subscribe-text {
    font-size: 16px;
    line-height: 24px;
}

.subscribe-input {
    height: 44px;
    border: 1px solid rgba(38, 38, 38, 0.15);
    border-radius: 4px !important;
    background-color: white;
    font-size: 14px;
    font-style: italic;
    outline: none;
}

.subscribe-input:focus {
    box-shadow: none;
    border-color: #0056b3;
}

.subscribe-btn {
    height: 44px;
    padding: 0 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px !important;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #004494;
    color: white;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.input-group {
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-item {
    width: 28px;
    height: 28px;
    background-color: #0056b3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.social-item:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(38, 38, 38, 0.12);
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 16px;
    color: rgba(38, 38, 38, 0.4);
    margin: 0;
}
