.br-premium-wrapper {
    font-family: Lato, sans-serif;
    color: #4a4a4a;
    background-color: #fdfdfd;
    line-height: 1.7;
}

.br-premium-wrapper h2,
.br-premium-wrapper h3,
.br-premium-wrapper h4,
.br-premium-wrapper h5 {
    font-family: "Libre Franklin", serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.br-pink {
    color: #E81C61 !important;
}

.br-blue {
    color: #0073B4 !important;
}

.br-bg-pink {
    background-color: #E81C61 !important;
    color: #fff !important;
}

.br-bg-blue {
    background-color: #0073B4 !important;
    color: #fff !important;
}

/* Premium Buttons */
.br-btn-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.br-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
}

/* Premium Image Styling */
.br-hero-img {
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Floating Feature Cards */
.br-feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(232, 28, 97, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.br-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 115, 180, 0.1);
    border-color: rgba(0, 115, 180, 0.2);
}

.br-feature-icon {
    width: 60px;
    height: 60px;
    background: #FFF5F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

/* Premium Sidebar Menu */
.br-sidebar-menu {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.br-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.br-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.br-menu-list li a:hover {
    background: #FFF5F8;
    color: #E81C61;
    transform: translateX(5px);
}

/* Premium FAQ Accordion Override */
.br-faq-accordion .accordion-item {
    border: none;
    background: #fff;
    border-radius: 16px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.br-faq-accordion .accordion-button {
    font-family: Lato, sans-serif;
    font-weight: 500;
    color: #333;
    padding: 20px 25px;
    background-color: #fff;
    border: none;
    box-shadow: none !important;
}

.br-faq-accordion .accordion-button:not(.collapsed) {
    color: #0073B4;
    background-color: #F4FAFD;
}

.br-faq-accordion .accordion-body {
    padding: 0 25px 25px;
    color: #666;
    background-color: #F4FAFD;
}

/* Gradient CTA Box */
.br-gradient-cta {
    background: linear-gradient(145deg, #0073B4 0%, #004d7a 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 115, 180, 0.2);
    position: relative;
    overflow: hidden;
}

/* Store Gallery */
.br-gallery-img {
    border-radius: 20px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.br-gallery-img:hover {
    transform: scale(1.03);
}