h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Footer Styles */
.footer-custom {
    background: var(--color-green);
    color: white;
}

.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    height: 56px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    box-shadow: none;
}

.footer-main {
    padding: 4rem 0;
}

.footer-logo-box {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    font-weight: 700;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    color: white;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.eu-badge {
    width: 48px;
    height: 48px;
    background: var(--color-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 1.5rem;
}

.btn-red {
    background: var(--color-red);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
}

.btn-red:hover {
    background: #f27772;
    color: white;
}