.acmoney-footer {
    background: #1e3a8a;
    color: white;
    padding: 4rem 0 2rem;
}

.acmoney-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.acmoney-footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.acmoney-footer-description {
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.acmoney-footer-logo {
    margin-bottom: 1.5rem;
}

.acmoney-footer-logo .acmoney-logo-image {
    width: 50px;
    height: 50px;
}

.acmoney-footer-logo .acmoney-logo-text {
    font-size: 1.25rem;
    color: white;
}

.acmoney-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acmoney-footer-links li {
    margin-bottom: 0.75rem;
}

.acmoney-footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.acmoney-footer-links a:hover {
    color: #fbbf24;
}

.acmoney-footer-contact p {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.acmoney-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.acmoney-footer-bottom p {
    color: #e5e7eb;
    margin: 0;
}

.acmoney-footer-legal a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.acmoney-footer-legal a:hover {
    color: #fbbf24;
}

.acmoney-cookies-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 2rem;
    z-index: 1001;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.acmoney-cookies-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.acmoney-cookies-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.acmoney-cookies-content p {
    flex: 1;
    margin: 0;
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

.acmoney-cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.acmoney-cookies-buttons .acmoney-btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.acmoney-cookies-buttons .acmoney-btn-primary {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.acmoney-cookies-buttons .acmoney-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.acmoney-cookies-buttons .acmoney-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.acmoney-cookies-buttons .acmoney-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .acmoney-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .acmoney-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .acmoney-footer-logo .acmoney-logo-image {
        width: 40px;
        height: 40px;
    }
    
    .acmoney-footer-logo .acmoney-logo-text {
        font-size: 1rem;
    }
    
    .acmoney-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .acmoney-cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .acmoney-cookies-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .acmoney-cookies-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
} 