﻿.premium-header {
    background-color: #003874;
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 56px; /* Offset for navbar */
}

.price-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .price-card:hover {
        transform: translateY(-5px);
    }

.bank-card {
    border-radius: 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.wa-btn {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .wa-btn:hover {
        background-color: #128C7E;
        color: white;
        transform: scale(1.05);
    }
