:root {
    --dark-bg-color: #1a1a2e; /* Dark blue/purple */
    --light-block-bg-color: #f8f9fa; /* Off-white for content blocks */
    --text-on-dark: #e0e0e0; /* Light grey for text on dark backgrounds */
    --text-on-light: #333; /* Dark grey for text on light backgrounds */
    --primary-color: #007bff; /* Bootstrap primary blue */
    --accent-color-1: #00bcd4; /* Acid blue/cyan */
    --accent-color-2: #ff4081; /* Acid pink/magenta */
    --gradient-line-1: linear-gradient(90deg, #00bcd4, #ff4081);
    --gradient-line-2: linear-gradient(90deg, #ff4081, #00bcd4);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg-color);
    color: var(--text-on-dark);
    line-height: 1.6;
    margin-top: 76px; /* Adjust for fixed header height */
    overflow-x: hidden;
}

/* General Section Styling */
.section-block {
    background-color: var(--dark-bg-color);
    padding: 60px 0;
    position: relative;
}

.section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-line-1);
    opacity: 0.7;
}

.section-block:nth-child(odd)::before {
    background: var(--gradient-line-2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

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

/* Header & Navigation */
.header-main {
    background-color: var(--dark-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.navbar-brand .site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-brand .site-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    padding: 0.75rem 1rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color-1) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color-1);
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.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");
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding-top: 100px; /* To account for fixed header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    backdrop-filter: blur(2px);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    background: var(--gradient-line-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.category-tag {
    background-color: var(--accent-color-1) !important;
    border: 1px solid var(--accent-color-1);
    color: var(--dark-bg-color) !important;
    font-weight: 600;
    padding: 0.6em 1.2em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background-color: transparent !important;
    color: var(--accent-color-1) !important;
    box-shadow: 0 0 15px var(--accent-color-1);
}

.scroll-indicator {
    color: var(--accent-color-2) !important;
    font-size: 3rem;
    text-decoration: none;
    display: block;
    margin-top: 3rem;
}

/* Categories Filter Bar & Search */
.category-dropdown-btn {
    background-color: transparent;
    border-color: var(--accent-color-1);
    color: var(--accent-color-1);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.category-dropdown-btn:hover {
    background-color: var(--accent-color-1);
    color: var(--dark-bg-color);
}

.dropdown-menu-dark {
    background-color: var(--dark-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu-dark .dropdown-item {
    color: var(--text-on-dark);
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color-1);
}

.search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-on-dark);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
    color: var(--text-on-dark);
}

.search-btn {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
    color: var(--dark-bg-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.search-btn:hover {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    box-shadow: 0 0 15px var(--accent-color-2);
}

/* Featured Article */
.featured-card {
    background-color: var(--light-block-bg-color);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-on-light);
    position: relative;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -2px; /* Slight overlap */
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-line-1);
    z-index: 0;
    border-radius: 17px; /* Slightly larger for border effect */
    opacity: 0.6;
}

.featured-card .row {
    position: relative;
    z-index: 1;
    background-color: var(--light-block-bg-color);
    border-radius: 15px;
}

.featured-img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg-color);
}

.featured-summary {
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--accent-color-1);
}

.why-important-block {
    background-color: rgba(0, 188, 212, 0.1);
    border-left: 5px solid var(--accent-color-1);
    color: var(--text-on-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.why-important-block .alert-heading {
    color: var(--accent-color-1);
    font-weight: 600;
}

.open-modal-btn {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.open-modal-btn:hover {
    background-color: darken(var(--accent-color-2), 10%);
    border-color: darken(var(--accent-color-2), 10%);
    box-shadow: 0 0 15px var(--accent-color-2);
}

/* Latest Posts & Interviews (similar block styling) */
.article-block, .interview-card, .idea-card, .analytics-card, .popular-post-card, .latest-news-item {
    background-color: var(--light-block-bg-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-on-light);
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure all blocks are same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-block::before, .interview-card::before, .idea-card::before, .analytics-card::before, .popular-post-card::before, .latest-news-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-line-1);
    z-index: 0;
    border-radius: 16px;
    opacity: 0.3;
}

.article-block > *, .interview-card > *, .idea-card > *, .analytics-card > *, .popular-post-card > *, .latest-news-item > * {
    position: relative;
    z-index: 1;
}

.article-img-wrapper {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.article-block .article-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .article-block.d-flex.flex-column.flex-md-row .article-img-wrapper {
        width: 40%;
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
    .article-block.d-flex.flex-column.flex-md-row-reverse .article-img-wrapper {
        width: 40%;
        margin-left: 1.5rem;
        margin-bottom: 0;
    }
    .article-block .article-img-wrapper img {
        height: 100%;
    }
    .article-block {
        flex-direction: row;
    }
    .article-block.flex-md-row-reverse {
        flex-direction: row-reverse;
    }
}

.article-title, .interview-title, .idea-title, .analytics-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-bg-color);
    margin-bottom: 0.75rem;
}

.article-summary {
    font-size: 0.95rem;
    color: var(--text-on-light);
}

.article-tags .badge {
    background-color: rgba(0, 188, 212, 0.15) !important;
    color: var(--accent-color-1) !important;
    margin-right: 5px;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    font-weight: 500;
}

/* Articles Grid */
.article-card {
    background-color: var(--light-block-bg-color);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-on-light);
    height: 100%; /* Ensure all blocks are same height */
    position: relative;
    display: flex;
    flex-direction: column;
}

.article-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-line-2);
    z-index: 0;
    border-radius: 16px;
    opacity: 0.3;
}

.article-card .card-body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.article-card .card-img-top {
    height: 180px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.article-grid-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-bg-color);
    margin-bottom: 0.5rem;
}

.reading-time {
    font-size: 0.85rem;
    color: var(--accent-color-2);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.article-tags-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-tags-overlay .badge {
    background-color: var(--accent-color-1) !important;
    color: var(--dark-bg-color) !important;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    font-weight: 600;
}

/* Startup Ideas */
.idea-icon {
    font-size: 3rem;
    color: var(--accent-color-1);
    margin-bottom: 1rem;
}

.idea-description {
    font-size: 0.95rem;
    color: var(--text-on-light);
}

.idea-details li {
    color: var(--text-on-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.idea-details .bi-check-circle-fill {
    color: var(--accent-color-2);
}

/* Interviews */
.interview-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--accent-color-1);
    flex-shrink: 0;
}

.interview-content {
    flex-grow: 1;
}

/* Analytics */
.analytics-card .analytics-points li {
    color: var(--text-on-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.analytics-card .analytics-points .bi {
    color: var(--accent-color-2);
}

/* Popular Posts */
.popular-post-card {
    background-color: var(--light-block-bg-color);
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-on-light);
    height: 100%; /* Ensure all blocks are same height */
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular-post-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-line-1);
    z-index: 0;
    border-radius: 16px;
    opacity: 0.3;
}

.popular-post-card .card-body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.popular-post-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-bg-color);
    margin-bottom: 1rem;
}

.comment-quote {
    font-style: italic;
    color: var(--text-on-light);
    font-size: 0.9rem;
}

.blockquote-footer {
    color: rgba(var(--text-on-light), 0.7) !important;
}

/* Latest News */
.latest-news-list .latest-news-item {
    background-color: var(--light-block-bg-color);
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.2s ease-in-out;
}

.latest-news-list .latest-news-item:hover {
    transform: translateY(-5px);
}

.latest-news-list .latest-news-item h5 {
    color: var(--dark-bg-color);
    font-weight: 600;
}

.latest-news-list .latest-news-item small {
    color: var(--text-on-light) !important;
}

/* Modals */
.modal-content-custom {
    background-color: var(--dark-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header-custom {
    background-color: var(--dark-bg-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header-custom .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.75rem;
}

.modal-body-custom {
    background-color: var(--light-block-bg-color);
    color: var(--text-on-light);
    padding: 2rem;
    border-radius: 0 0 15px 15px;
}

.modal-body-custom p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.modal-body-custom img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Footer */
.footer-main {
    background-color: var(--dark-bg-color);
    color: var(--text-on-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-line-2);
    opacity: 0.7;
}

.footer-brand .logo-img {
    height: 35px;
    width: auto;
}

.footer-brand .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color-1);
}

.footer-heading.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-heading.text-md-end::after {
    left: auto;
    right: 0;
    transform: translateX(0);
}

.footer-links li a,
.footer-contacts p a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

.footer-links li a:hover,
.footer-contacts p a:hover,
.footer-legal-links a:hover {
    color: var(--accent-color-1) !important;
}

.footer-contacts .bi {
    color: var(--accent-color-2);
}

.footer-newsletter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group {
    max-width: 350px;
    width: 100%;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-on-dark);
    border-radius: 50px 0 0 50px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
    color: var(--text-on-dark);
}

.newsletter-submit-btn {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
    color: var(--dark-bg-color);
    border-radius: 0 50px 50px 0;
    font-weight: 600;
}

.newsletter-submit-btn:hover {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    box-shadow: 0 0 15px var(--accent-color-2);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark-bg-color);
        border-radius: 10px;
        margin-top: 10px;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    .navbar-nav .nav-link {
        text-align: center;
    }
    .navbar-nav .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .category-dropdown-btn, .search-input, .search-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .search-bar {
        width: 100%;
        flex-direction: column;
    }
    .search-input {
        border-radius: 50px;
    }
    .search-btn {
        border-radius: 50px;
        margin-top: 10px;
    }
    .featured-img {
        border-radius: 15px 15px 0 0;
        height: 250px;
    }
    .featured-card .row {
        flex-direction: column;
    }
    .featured-card .row::before {
        border-radius: 15px;
    }
    .featured-card .card-body {
        padding: 1.5rem;
    }
    .article-block.d-flex.flex-column.flex-md-row .article-img-wrapper,
    .article-block.d-flex.flex-column.flex-md-row-reverse .article-img-wrapper {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 1rem;
    }
    .article-block .article-img-wrapper img {
        height: 200px;
    }
    .article-block {
        flex-direction: column;
    }
    .article-block.flex-md-row-reverse {
        flex-direction: column;
    }
    .footer-heading.text-md-end::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .newsletter-input-group {
        width: 100%;
    }
    .newsletter-input {
        border-radius: 50px 0 0 50px;
    }
    .newsletter-submit-btn {
        border-radius: 0 50px 50px 0;
    }
    .footer-main .col-md-4 {
        text-align: center !important;
    }
    .footer-main .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-brand {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    body {
        margin-top: 60px;
    }
    .header-main {
        padding: 0.25rem 0;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .navbar-brand .site-title {
        font-size: 1.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .open-modal-btn {
        width: 100%;
        text-align: center;
    }
    .modal-header-custom .modal-title {
        font-size: 1.25rem;
    }
    .modal-body-custom p {
        font-size: 0.95rem;
    }
    .newsletter-input-group {
        flex-direction: column;
    }
    .newsletter-input {
        border-radius: 50px !important;
        margin-bottom: 10px;
    }
    .newsletter-submit-btn {
        border-radius: 50px !important;
        width: 100%;
    }
}/* Styles for the main content frame */
.dataTrustFrame {
    padding: 40px 30px; /* Padding for the top/bottom and left/right sides of the block */
    margin: 40px 0; /* Margin above and below the entire block */
    background-color: var(--light-block-bg-color); /* Background color for the content block */
    color: var(--text-on-light); /* Default text color within this block */
    border-radius: 15px; /* Rounded corners for the block */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    line-height: 1.6; /* General line height for improved readability */
}

/* Heading styles within the dataTrustFrame */
.dataTrustFrame h1 {
    font-size: 2.2rem; /* Moderate size for H1 within content */
    font-weight: 700; /* Bold font weight */
    color: var(--dark-bg-color); /* Darker color for headings */
    margin-bottom: 1.5rem; /* Spacing below the heading */
    line-height: 1.2; /* Tighter line height for headings */
}

.dataTrustFrame h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    font-weight: 600; /* Slightly less bold than H1 */
    color: var(--dark-bg-color);
    margin-top: 2rem; /* Spacing above H2 */
    margin-bottom: 1.2rem; /* Spacing below H2 */
    line-height: 1.3;
}

.dataTrustFrame h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    font-weight: 600;
    color: var(--dark-bg-color);
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.dataTrustFrame h4 {
    font-size: 1.25rem; /* Moderate size for H4 */
    font-weight: 500; /* Standard font weight */
    color: var(--dark-bg-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.dataTrustFrame h5 {
    font-size: 1.1rem; /* Moderate size for H5 */
    font-weight: 500;
    color: var(--dark-bg-color);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Paragraph styles within the dataTrustFrame */
.dataTrustFrame p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Spacing below paragraphs */
    line-height: 1.7; /* Enhanced line height for better readability */
    color: var(--text-on-light); /* Ensure consistent paragraph color */
}

/* Unordered list styles within the dataTrustFrame */
.dataTrustFrame ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 25px; /* Indentation for list items */
    margin-bottom: 1rem; /* Spacing below the list */
    color: var(--text-on-light); /* Ensure consistent list item color */
}

/* List item styles within the dataTrustFrame */
.dataTrustFrame ul li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .dataTrustFrame {
        padding: 30px 15px; /* Adjust padding for smaller screens */
        margin: 30px 0; /* Adjust margin for smaller screens */
    }

    .dataTrustFrame h1 {
        font-size: 1.8rem; /* Smaller H1 on mobile */
    }

    .dataTrustFrame h2 {
        font-size: 1.5rem; /* Smaller H2 on mobile */
    }

    .dataTrustFrame h3 {
        font-size: 1.3rem; /* Smaller H3 on mobile */
    }

    .dataTrustFrame h4 {
        font-size: 1.15rem; /* Smaller H4 on mobile */
    }

    .dataTrustFrame h5 {
        font-size: 1rem; /* Smaller H5 on mobile */
    }

    .dataTrustFrame p,
    .dataTrustFrame ul li {
        font-size: 0.95rem; /* Slightly smaller text on mobile */
    }
}
