/* General Styles */
body {
    background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Search Bar in Navbar */
.search-bar {
    max-width: 400px;
}

.search-bar input {
    border-radius: 20px 0 0 20px;
}

.search-bar button {
    border-radius: 0 20px 20px 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0061f2 0%, #00c6ff 100%);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-section .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-section .particle:nth-child(1) { animation: moveParticle1 12s infinite; top: 20%; left: 50%; }
.hero-section .particle:nth-child(2) { animation: moveParticle2 15s infinite; top: 40%; left: 20%; }
.hero-section .particle:nth-child(3) { animation: moveParticle3 18s infinite; top: 60%; left: 70%; }
.hero-section .particle:nth-child(4) { animation: moveParticle4 20s infinite; top: 30%; left: 30%; }
.hero-section .particle:nth-child(5) { animation: moveParticle5 22s infinite; top: 70%; left: 60%; }
.hero-section .particle:nth-child(6) { animation: moveParticle6 25s infinite; top: 50%; left: 80%; }

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-section .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: white;
    color: #0061f2;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

@keyframes moveParticle1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes moveParticle2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.4); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes moveParticle3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, -50px) scale(1.3); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes moveParticle4 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -70px) scale(1.5); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes moveParticle5 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -80px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes moveParticle6 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(90px, -40px) scale(1.3); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Hero Section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    animation: rotate 30s linear infinite;
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #0052cc;
}

.hero-section .btn:hover::before {
    transform: translateX(100%);
}

.hero-section .btn i {
    margin-right: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Wave Animation */
.hero-section .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1440px 100px;
    animation: wave 20s linear infinite;
}

.hero-section .wave:nth-child(2) {
    bottom: 0;
    opacity: 0.5;
    animation: wave2 15s linear infinite;
}

.hero-section .wave:nth-child(3) {
    bottom: 0;
    opacity: 0.2;
    animation: wave3 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

@keyframes wave2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1440px;
    }
}

@keyframes wave3 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Popular Stores Section (Home Page) */
.popular-stores {
    margin-top: 40px;
    position: relative;
}

.popular-stores h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.popular-stores h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0061f2, #00c6ff);
    border-radius: 2px;
}

/* Home Page Store Cards */
.store-card-home {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.store-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,97,242,0.05) 0%, rgba(0,198,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,97,242,0.1);
    border-color: rgba(0,97,242,0.1);
}

.store-card-home:hover::before {
    opacity: 1;
}

.store-card-home .logo-container {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.store-card-home:hover .logo-container {
    transform: scale(1.05);
}

.store-card-home img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.1);
    transition: filter 0.3s ease;
}

.store-card-home:hover img {
    filter: grayscale(0);
}

.store-card-home h6 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2c3e50;
}

.store-card-home p.small {
    margin-bottom: 15px;
    color: #6c757d;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.store-card-home .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0061f2 0%, #00c6ff 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.store-card-home .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.store-card-home .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,97,242,0.2);
}

.store-card-home .btn:hover::before {
    transform: translateX(100%);
}

/* Store Page Cards */
.store-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #0D6EFD;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
    border-color: #0D6EFD;
}

.store-card:hover::before {
    opacity: 1;
}

.store-card a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    width: 100%;
    text-align: center;
    padding: 10px;
    transition: color 0.3s ease;
}

.store-card:hover a {
    color: #0D6EFD;
}

/* Store List Grid */
.store-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

/* Alphabetical Navigation */
.alphabet-nav {
    position: sticky;
    top: 85px;
    z-index: 100;
    background: rgba(248, 249, 250, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alphabet-nav a {
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 6px 12px;
    background-color: #fff;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.alphabet-nav a:hover {
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.alphabet-nav a:focus, 
.alphabet-nav a.active {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

/* Store Section Headers */
#store-list h2 {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

#store-list h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #0D6EFD;
}

/* Search Bar */
.input-group {
    max-width: 600px;
    margin: 0 auto;
}

.input-group-text {
    background-color: #fff;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #ddd;
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .store-card-home {
        height: 220px;
        padding: 15px;
    }

    .store-card-home .logo-container {
        width: 120px;
        height: 80px;
        margin-bottom: 10px;
    }

    .store-card-home h6 {
        font-size: 0.9rem;
    }

    .store-card-home p.small {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .store-card-home .btn {
        font-size: 0.9rem;
        padding: 0.375rem 0.75rem;
    }

    .store-card a {
        font-size: 0.65rem;
    }

    .store-list .store-card {
        height: 45px;
    }

    .alphabet-nav {
        position: sticky;
        top: 70px;
        padding: 20px 5px;
        margin: 15px -10px 15px -10px;
        border-radius: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .alphabet-nav a {
        font-size: 0.8rem;
        padding: 8px 10px;
        min-width: 34px;
        margin: 3px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .store-card-home {
        height: 200px;
        padding: 10px;
    }

    .store-card-home .logo-container {
        width: 100px;
        height: 70px;
    }

    .store-card-home h6 {
        font-size: 0.85rem;
    }

    .store-card-home .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Store Details Page Styles */
.store-header {
    background: #f8f9fa;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Blog Section */
.blog-section {
    position: relative;
    margin: 60px 0;
}

.blog-section h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0061f2, #00c6ff);
    border-radius: 2px;
}

.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,97,242,0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.08);
}

.blog-card .card-body {
    padding: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(249,250,251,1) 100%);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #0061f2;
}

.blog-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog-card .btn-outline-primary {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid #0061f2;
    color: #0061f2;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blog-card .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0061f2 0%, #00c6ff 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.blog-card .btn-outline-primary:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0,97,242,0.2);
}

.blog-card .btn-outline-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* View All Blog Posts Button */
.view-all-blogs {
    margin-top: 3rem;
}

.view-all-blogs .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #0061f2;
    color: #0061f2;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-blogs .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0061f2 0%, #00c6ff 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.view-all-blogs .btn:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0,97,242,0.2);
}

.view-all-blogs .btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.view-all-blogs .btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.view-all-blogs .btn:hover i {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .blog-card .card-img-top {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1.1rem;
        height: 2.5em;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
}

/* View All Stores Button */
.view-all-stores {
    margin-top: 3rem;
}

.view-all-stores .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #0061f2;
    color: #0061f2;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-stores .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0061f2 0%, #00c6ff 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.view-all-stores .btn:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0,97,242,0.2);
}

.view-all-stores .btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.view-all-stores .btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.view-all-stores .btn:hover i {
    transform: translateX(-3px);
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    position: relative;
    margin: 60px 0;
}

.faq-section h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0061f2, #00c6ff);
    border-radius: 2px;
}

.accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0,97,242,0.1);
    transform: translateY(-2px);
}

.accordion-button {
    font-weight: 600;
    color: #2d3436;
    background-color: #fff;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #0061f2;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(249,250,251,1) 100%);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.2s ease;
}

.accordion-body {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.6;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(249,250,251,1) 100%);
}

.accordion-body ul,
.accordion-body ol {
    padding-left: 1.25rem;
    margin: 0.75rem 0 0 0;
    list-style: none;
}

.accordion-body li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: #4b5563;
}

.accordion-body li:last-child {
    margin-bottom: 0;
}

.accordion-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #0061f2;
    border-radius: 50%;
    opacity: 0.8;
}

.accordion-body ol {
    counter-reset: faq-counter;
}

.accordion-body ol li {
    counter-increment: faq-counter;
}

.accordion-body ol li::before {
    content: counter(faq-counter);
    position: absolute;
    left: -5px;
    top: -1px;
    width: 20px;
    height: 20px;
    background: #0061f2;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
        margin: 30px 0;
    }

    .faq-section h2 {
        font-size: 1.75rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    .accordion-body li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }

    .accordion-body ol li::before {
        font-size: 11px;
        width: 18px;
        height: 18px;
        left: -4px;
    }
}