body {
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e;
    line-height: 1.6;
    margin: 0;
    padding-top: 100px; /* Adjust for fixed header */
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.header-main {
    background-color: #0f3460;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e94560;
    background-color: rgba(233, 69, 96, 0.1);
    border-radius: 5px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: #0f3460;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: #e94560;
    font-weight: 700;
}

.offcanvas-body .navbar-nav .nav-link {
    color: #e0e0e0;
}

.offcanvas-body .navbar-nav .nav-link:hover,
.offcanvas-body .navbar-nav .nav-link.active {
    color: #e94560;
    background-color: rgba(233, 69, 96, 0.1);
}

.header-disclaimer {
    background-color: #e94560;
    color: #fff;
    padding: 5px 0;
    font-size: 0.85rem;
    text-align: center;
}

.header-disclaimer a {
    color: #fff;
    text-decoration: underline;
}

.header-disclaimer a:hover {
    color: #f0f0f0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e94560;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e94560;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    padding-top: 100px; /* Account for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

.game-card {
    position: absolute;
    opacity: 0.15;
    width: 150px;
    height: auto;
    transform: rotate(var(--rotation, 0deg));
    animation: card-slide var(--duration, 10s) linear infinite var(--delay, 0s);
}

.game-card.card-1 { top: 10%; left: -10%; --rotation: 15deg; --duration: 12s; --delay: 0s; }
.game-card.card-2 { top: 50%; right: -10%; --rotation: -20deg; --duration: 15s; --delay: 3s; }
.game-card.card-3 { bottom: 5%; left: 20%; --rotation: 10deg; --duration: 10s; --delay: 6s; }
.game-card.card-4 { top: 30%; left: 60%; --rotation: -5deg; --duration: 13s; --delay: 9s; }

@keyframes card-slide {
    0% { transform: translateX(-100%) rotate(var(--rotation)); opacity: 0.15; }
    50% { opacity: 0.25; }
    100% { transform: translateX(200%) rotate(var(--rotation)); opacity: 0.15; }
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards 0.5s;
}

@keyframes fadeInSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

#rotating-keyword {
    color: #e94560;
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
}

.hero-features li {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.hero-features .material-symbols-outlined {
    color: #e94560;
    font-size: 1.5rem;
}

.play-now-btn {
    background-color: #e94560;
    border-color: #e94560;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.play-now-btn:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
    transform: translateY(-3px);
}

/* About Platform Section */
.about-platform {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.about-platform img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-platform p {
    font-size: 1.05rem;
}

.about-features li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.about-features .material-symbols-outlined {
    color: #e94560;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Game Section */
.game-section {
    background: linear-gradient(45deg, #0f3460 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.game-card-large {
    background-color: rgba(15, 52, 96, 0.7);
    border: 1px solid rgba(233, 69, 96, 0.3);
    overflow: hidden;
}

.game-poster-container {
    height: 550px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.game-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.game-poster-container:hover .game-overlay {
    opacity: 1;
}

.game-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e94560;
}

.game-description {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
}

.start-playing-btn {
    background-color: #e94560;
    border-color: #e94560;
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}

.start-playing-btn:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
    transform: translateY(-3px);
}

/* Game Details Modal */
#gameDetailsModal .modal-content {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid #0f3460;
}

#gameDetailsModal .modal-header {
    border-bottom: 1px solid #0f3460;
}

#gameDetailsModal .modal-title {
    color: #e94560;
}

#gameDetailsModal .btn-close {
    filter: invert(1);
}

#gameDetailsModal iframe {
    border: none;
    border-radius: 8px;
}

#gameDetailsModal h4, #gameDetailsModal h6 {
    color: #e94560;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#gameDetailsModal ul {
    padding-left: 20px;
}

#gameDetailsModal ul li {
    margin-bottom: 5px;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.responsible-gaming-section .card {
    background-color: #0f3460;
    color: #e0e0e0;
    border-radius: 10px;
}

.responsible-gaming-section .card-title {
    color: #e94560;
    font-weight: 600;
}

.responsible-tips li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.responsible-tips .material-symbols-outlined {
    color: #e94560;
    font-size: 1.3rem;
    margin-top: 2px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #e0e0e0;
}

.testimonials-slider {
    margin: 0 auto;
    padding: 0 15px;
}

.slider-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: #2a2a4a;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 280px; /* Ensure uniform height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e94560;
    margin-bottom: 15px;
}

.testimonial-card .user-info {
    margin-bottom: 15px;
}

.testimonial-card .user-name {
    display: block;
    font-weight: 700;
    color: #e94560;
    font-size: 1.1rem;
}

.testimonial-card .user-location-age {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.testimonial-card .testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

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

.accordion-item {
    background-color: #0f3460;
    border: 1px solid #2a2a4a;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header button {
    color: #e94560;
    font-weight: 600;
    background-color: #0f3460;
    border: none;
    padding: 1rem 1.25rem;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header button:not(.collapsed) {
    background-color: #2a2a4a;
    color: #e94560;
}

.accordion-header button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #2a2a4a;
    border-top: 1px solid #0f3460;
    color: #e0e0e0;
}

.support-shortcut .support-btn {
    background-color: #e94560;
    border-color: #e94560;
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}

.support-shortcut .support-btn:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
    transform: translateY(-3px);
}

/* Report Problem Modal */
#reportProblemModal .modal-content {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid #0f3460;
}

#reportProblemModal .modal-header {
    border-bottom: 1px solid #0f3460;
}

#reportProblemModal .modal-title {
    color: #e94560;
}

#reportProblemModal .btn-close {
    filter: invert(1);
}

#reportProblemModal .form-control {
    background-color: #0f3460;
    border-color: #2a2a4a;
    color: #e0e0e0;
}

#reportProblemModal .form-control::placeholder {
    color: #a0a0a0;
}

#reportProblemModal .form-control:focus {
    background-color: #0f3460;
    border-color: #e94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
    color: #e0e0e0;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #1a1a2e;
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: #331a4e; /* Darker purple to stand out */
    border: 2px solid #e94560; /* Red border */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 1rem;
}

.disclaimer-title {
    color: #e94560;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Footer */
.site-footer {
    background-color: #0f3460;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-heading {
    color: #e94560;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.site-footer ul {
    padding-left: 0;
}

.site-footer li {
    margin-bottom: 0.75rem;
}

.site-footer .material-symbols-outlined {
    color: #e94560;
    font-size: 1.2rem;
}

.invite-btn {
    color: #fff;
    border-color: #e94560;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.invite-btn:hover {
    background-color: #e94560;
    border-color: #e94560;
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom .logo-img {
    height: 30px;
    width: auto;
}

.footer-bottom .site-title {
    font-size: 1.5rem;
    color: #e94560;
}

.footer-text, .footer-copyright {
    color: #a0a0a0;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e94560;
}

.footer-support-logos {
    gap: 1.5rem;
}
@media (max-width:575px) {
    .footer-support-logos{
        flex-direction: column;
    }
}
.footer-logo-item {
    height: auto;
    max-width: 120px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-item:hover {
    transform: scale(1.05);
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    max-width: 500px;
    transform: translateY(-20px);
    opacity: 0;
    animation: modal-slide-in 0.5s ease-out forwards;
}

@keyframes modal-slide-in {
    to { transform: translateY(0); opacity: 1; }
}

.age-verification-content h2 {
    color: #e94560;
    font-size: 2rem;
    margin-bottom: 15px;
}

.age-verification-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.age-icon {
    font-size: 4rem;
    color: #e94560;
    margin-bottom: 20px;
}

.age-verification-buttons button {
    margin: 0 10px;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.age-verification-buttons .btn-primary {
    background-color: #e94560;
    border-color: #e94560;
}

.age-verification-buttons .btn-primary:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
    transform: translateY(-2px);
}

.age-verification-buttons .btn-secondary {
    background-color: #0f3460;
    border-color: #0f3460;
    color: #e0e0e0;
}

.age-verification-buttons .btn-secondary:hover {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
    transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f3460;
    color: #e0e0e0;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content {
    flex-grow: 1;
    min-width: 280px;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #e94560;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ff6b8a;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    text-decoration: none;
}

.cookie-buttons .btn-primary {
    background-color: #e94560;
    border-color: #e94560;
    color: #fff;
}

.cookie-buttons .btn-primary:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
}

.cookie-buttons .btn-secondary {
    background-color: #2a2a4a;
    border-color: #2a2a4a;
    color: #e0e0e0;
}

.cookie-buttons .btn-secondary:hover {
    background-color: #3e3e5e;
    border-color: #3e3e5e;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid #0f3460;
    z-index: 1050; /* Higher than cookie banner */
}

#cookieSettingsModal .modal-header {
    border-bottom: 1px solid #0f3460;
}

#cookieSettingsModal .modal-title {
    color: #e94560;
}

#cookieSettingsModal .btn-close {
    filter: invert(1);
}

#cookieSettingsModal .form-check-input:checked {
    background-color: #e94560;
    border-color: #e94560;
}

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

#cookieSettingsModal .form-check-label {
    font-weight: 600;
}

#cookieSettingsModal .form-text {
    color: #a0a0a0 !important;
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .hero-headline { font-size: 4rem; }
    .section-title { font-size: 2.5rem; }
    .site-title { font-size: 2rem; }
    .game-title { font-size: 2.5rem; }
    .disclaimer-title { font-size: 2rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-headline { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .site-title { font-size: 1.8rem; }
    .game-title { font-size: 2.2rem; }
    .disclaimer-title { font-size: 1.8rem; }
    .game-poster-container { height: 400px; }
    .testimonial-card { min-height: 300px; }
}

@media (max-width: 767px) {
    body {
        padding-top: 130px; /* Adjust for smaller header + disclaimer */
    }
    .header-main {
        flex-direction: column;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .site-title {
        font-size: 1.25rem;
    }
    .hero-headline {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .game-title { font-size: 1.5rem; }
    .disclaimer-title { font-size: 1.4rem; }
    .hero-features li {
        font-size: 0.9rem;
        margin: 0 0.5rem 0.5rem 0.5rem;
    }
    .play-now-btn, .start-playing-btn, .support-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }


    .testimonial-card {
        min-height: 250px;
        padding: 20px;
    }
    .testimonial-card .avatar {
        width: 70px;
        height: 70px;
    }
    .testimonial-card .user-name {
        font-size: 1rem;
    }
    .testimonial-card .user-location-age {
        font-size: 0.8rem;
    }
    .accordion-header button {
        font-size: 0.95rem;
    }
    .accordion-body {
        font-size: 0.9rem;
    }
    .footer-col {
        margin-bottom: 2rem;
    }
    .footer-bottom .site-title {
        font-size: 1.25rem;
    }
    .footer-links a {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
    .cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-buttons .btn {
        flex-grow: 1;
    }
    .age-verification-content {
        padding: 30px;
    }
    .age-verification-content h2 {
        font-size: 1.5rem;
    }
    .age-verification-content p {
        font-size: 1rem;
    }
    .age-verification-buttons button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1100px) {
    .navbar-nav {
        overflow-x: visible;
    }
}

.navbar-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.navbar-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
/* Parent container styling for spacing */
.dataTrustFrame {
    margin-top: 2rem; /* Top margin for the entire frame */
    padding-left: 1.5rem; /* Left padding for content inside */
    padding-right: 1.5rem; /* Right padding for content inside */
    color: white!important;
}

/* Heading 1 styles */
.dataTrustFrame h1 {
    font-size: 2.2rem; /* Moderate font size for main headings */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above H1 */
    margin-bottom: 1rem; /* Space below H1 */
    font-weight: 700; /* Bold font weight */
      color: white!important;
}

/* Heading 2 styles */
.dataTrustFrame h2 {
    font-size: 1.8rem; /* Smaller than H1 */
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
       color: white!important;
}

/* Heading 3 styles */
.dataTrustFrame h3 {
    font-size: 1.5rem; /* Smaller than H2 */
    line-height: 1.3;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
         color: white!important;
}

/* Heading 4 styles */
.dataTrustFrame h4 {
    font-size: 1.2rem; /* Smaller than H3 */
    line-height: 1.35;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
       color: white!important;
}

/* Heading 5 styles */
.dataTrustFrame h5 {
    font-size: 1.1rem; /* Slightly larger than body text for distinction */
    line-height: 1.4;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 400; /* Regular font weight */
      color: white!important;
}

/* Paragraph styles */
.dataTrustFrame p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
       color: white!important;
}

/* Unordered list styles */
.dataTrustFrame ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
     color: white!important;
}

/* List item styles */
.dataTrustFrame li {
    font-size: 1rem; /* Inherit or explicitly set for list items */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5rem; /* Space between list items */
       color: white!important;
}
