.consultation-bar {
    background-color: #f8f9fa; /* Light, clean background */
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.consultation-container {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.free-tag {
    color: #28a745; /* Green for 'Free' */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
}

.call-link {
    background-color: #0056b3;
    color: white;
}

.whatsapp-link {
    background-color: #25D366;
    color: white;
}

.trust-line {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
}