/* Global Styles */
:root {
    --color-cold-blue-ice: #9BC1D9;
    --color-frosty-blue: #2F5C8F;
    --color-snow-gray: #DDE6ED;
    --color-scandi-red: #BF3A34;
    --color-light-gray-white: #EFEFEF;
    --text-color-dark: #333;
    --text-color-light: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--color-light-gray-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mountains of Christmas', cursive;
    color: var(--color-frosty-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-frosty-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-scandi-red);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-break: break-word;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-scandi-red);
    color: var(--text-color-light);
}

.btn-primary:hover {
    background-color: #a32e29; /* Darken by 10% */
}

.btn-secondary {
    background-color: var(--color-frosty-blue);
    color: var(--text-color-light);
}

.btn-secondary:hover {
    background-color: #23476e; /* Darken by 10% */
}

/* Top Disclaimer Bar */
.disclaimer-top-bar {
    background-color: var(--color-scandi-red);
    color: var(--text-color-light);
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.disclaimer-top-bar .disclaimer-text {
    margin: 0;
}

/* Header */
.site-header {
    background-color: var(--color-frosty-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color-light);
    font-family: 'Mountains of Christmas', cursive;
    font-size: clamp(1.25rem, 4vw, 2rem);
    text-decoration: none;
}

.site-logo {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: var(--text-color-light);
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav .nav-link {
    color: var(--text-color-light);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-cold-blue-ice);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color-light);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--text-color-light);
    text-align: center;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

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

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-section h1 {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 7vw, 5rem);
}

.hero-section p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
}

.hero-actions .btn {
    margin: 0 0.5rem;
    min-width: 150px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--text-color-light);
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* About Game Section */
.about-game-section {
    background-color: var(--color-snow-gray);
    color: var(--text-color-dark);
}

.about-game-section .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-game-section .about-text {
    flex: 2;
    min-width: 300px;
}

.about-game-section .about-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-game-section .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-game-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.about-game-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-game-section ul li strong {
    color: var(--color-scandi-red);
}

/* How To Play Section */
.how-to-play-section {
    background-color: var(--color-cold-blue-ice);
    color: var(--text-color-light);
    text-align: center;
}

.how-to-play-section h2 {
    color: var(--text-color-light);
}

.how-to-play-section p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

.responsible-gaming-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.responsible-gaming-list li {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    flex: 1 1 calc(33% - 3rem);
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
}

.responsible-gaming-list li i {
    color: var(--color-scandi-red);
    font-size: 1.5rem;
}

/* Game Selection Section */
.game-selection-section {
    background-color: var(--color-light-gray-white);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.game-card .game-link {
    display: block;
    color: inherit;
    text-decoration: none;
    flex-grow: 1;
}

.game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-card h3 {
    padding: 1rem 1rem 0.5rem 1rem;
    margin-bottom: 0;
    color: var(--color-frosty-blue);
}

.game-card p {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
}

.game-card .btn-play {
    display: block;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem 1rem;
    background-color: var(--color-scandi-red);
    color: var(--text-color-light);
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 5px;
}

.game-card .btn-play:hover {
    background-color: #a32e29; /* Darken by 10% */
}

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

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--text-color-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    color: var(--color-frosty-blue);
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
}

.modal-actions button {
    margin: 0 0.5rem;
}

.game-modal-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-game-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color-light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-game-modal:hover {
    color: var(--color-scandi-red);
}

/* Leaderboards Section */
.leaderboards-section {
    background-color: var(--color-snow-gray);
}

.leaderboard-scroll-wrapper {
    overflow-x: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is wide enough for scrolling */
}

.leaderboard-table th, .leaderboard-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.leaderboard-table th {
    background-color: var(--color-frosty-blue);
    color: var(--text-color-light);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1;
}

.leaderboard-table tbody tr:nth-child(even) {
    background-color: var(--color-light-gray-white);
}

.leaderboard-table tbody tr:hover {
    background-color: var(--color-cold-blue-ice);
    color: var(--text-color-light);
}

.leaderboard-table tbody tr:hover a {
    color: var(--text-color-light);
}

.leaderboard-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.sticky-user-row {
    background-color: var(--color-scandi-red) !important;
    color: var(--text-color-light);
    font-weight: 700;
    position: sticky;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-user-row td {
    border-top: 2px solid var(--color-scandi-red);
}

/* Daily Challenges Section */
.daily-challenges-section {
    background-color: var(--color-cold-blue-ice);
    color: var(--text-color-light);
}

.daily-challenges-section h2 {
    color: var(--text-color-light);
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.challenge-card h3 {
    color: var(--text-color-light);
    margin-bottom: 0.75rem;
}

.challenge-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.progress-bar-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    height: 20px;
    margin-bottom: 1rem;
    padding-left: 5px;
    text-indent: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--color-scandi-red);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color-light);
}

.challenge-card .btn {
    width: 100%;
}

/* Quests Section */
.quests-section {
    background-color: var(--color-light-gray-white);
}

.quest-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quest-item {
    background-color: var(--text-color-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quest-item h3 {
    color: var(--color-frosty-blue);
    margin-bottom: 0.75rem;
}

.quest-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quest-item .rewards h4 {
    color: var(--color-scandi-red);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.quest-item .rewards ul {
    list-style: none;
    padding-left: 0;
}

.quest-item .rewards ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.quest-item .rewards ul li i {
    color: var(--color-frosty-blue);
}

.quest-item .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-snow-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--text-color-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .star-rating {
    color: gold;
    margin-bottom: 1rem;
}

.testimonial-card .star-rating i {
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-cold-blue-ice);
}

.testimonial-author span {
    font-weight: 600;
    color: var(--color-frosty-blue);
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--color-cold-blue-ice);
    color: var(--text-color-light);
    text-align: center;
}

.contact-form-section h2 {
    color: var(--text-color-light);
}

.contact-form-section p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color-light);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color-light);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-scandi-red);
    box-shadow: 0 0 0 2px rgba(191, 58, 52, 0.3); /* Using rgba for the color-scandi-red */
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Site Disclaimer Block */
.site-disclaimer-block {
    background-color: var(--color-frosty-blue);
    color: var(--text-color-light);
    padding: 3rem 0;
    text-align: center;
}

.site-disclaimer-block .disclaimer-content {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-scandi-red);
    border-radius: 8px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-disclaimer-block .disclaimer-icon {
    font-size: 3rem;
    color: var(--color-scandi-red);
}

.site-disclaimer-block p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.site-disclaimer-block a {
    color: var(--color-cold-blue-ice);
    text-decoration: underline;
}

.site-disclaimer-block a:hover {
    color: var(--text-color-light);
}

/* Footer */
.site-footer {
    background-color: var(--color-frosty-blue);
    color: var(--text-color-light);
    padding: 3rem 0 1rem 0;
    font-size: 0.9rem;
}

.site-footer .footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-brand .logo-link {
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.site-footer .copyright {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-nav {
    flex: 1 1 200px;
}

.site-footer .footer-nav h3 {
    color: var(--text-color-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.site-footer .footer-nav ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-nav ul li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.site-footer .footer-nav ul li a:hover {
    color: var(--color-cold-blue-ice);
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
}

.responsible-gaming-logos img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) grayscale(0.1);
    transition: filter 0.3s ease;
}

.responsible-gaming-logos img:hover {
    filter: none;
}

.responsible-gaming-logos .age-icon {
    max-width: 60px;
    height: auto;
    filter: none;
}

/* Media Queries */
@media (max-width: 1100px) {
    .main-nav .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: var(--color-frosty-blue);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
        z-index: 999;
    }

    .main-nav .nav-list.active {
        display: flex;
    }

    .main-nav .nav-list li {
        text-align: center;
        margin: 0.5rem 0;
    }

    .main-nav .nav-link {
        display: block;
        padding: 0.8rem 1rem;
    }

    .burger-menu-btn {
        display: block;
    }

    .site-header .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.8rem);
    }

    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 6rem 0;
        min-height: 60vh;
    }

    .hero-actions .btn {
        margin: 0.5rem 0;
        width: 80%;
    }

    .about-game-section .about-content {
        flex-direction: column;
    }

    .responsible-gaming-list li {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .leaderboard-table {
        min-width: 500px;
    }

    .challenge-grid, .quest-list, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .site-disclaimer-block .disclaimer-content {
        padding: 1.5rem;
    }

    .site-footer .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .site-footer .footer-brand .logo-link {
        justify-content: center;
    }

    .site-footer .footer-nav {
        margin-top: 1.5rem;
    }

    .site-footer .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .responsible-gaming-logos img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .disclaimer-top-bar {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }

    .site-logo {
        height: 35px;
    }

    .site-name {
        font-size: 1.1rem;
    }

    .hero-section h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .hero-section p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-actions button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .close-game-modal {
        font-size: 1.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input, .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-group small {
        font-size: 0.75rem;
    }

    .site-disclaimer-block .disclaimer-content {
        padding: 1rem;
    }

    .site-disclaimer-block .disclaimer-icon {
        font-size: 2.5rem;
    }

    .site-disclaimer-block p {
        font-size: 0.85rem;
    }

    .site-footer .footer-nav h3 {
        font-size: 1.1rem;
    }

    .responsible-gaming-logos img {
        max-width: 80px;
    }

    .responsible-gaming-logos .age-icon {
        max-width: 50px;
    }
}
/*
 * Trust Pillar Unit Styles
 * These styles provide basic typography and spacing for content within the .trustPillarUnit container.
 */

.trustPillarUnit {
    /* Parent container padding */
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    /* You might want to add max-width or background-color here if needed for the container itself */
}

.trustPillarUnit h1 {
    /* Heading 1 styles */
    font-size: 1.8em; /* Not too big, but clearly a main heading */
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.trustPillarUnit h2 {
    /* Heading 2 styles */
    font-size: 1.6em;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
}

.trustPillarUnit h3 {
    /* Heading 3 styles */
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
}

.trustPillarUnit h4 {
    /* Heading 4 styles */
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

.trustPillarUnit h5 {
    /* Heading 5 styles */
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
}

.trustPillarUnit p {
    /* Paragraph styles */
    font-size: 1em; /* Standard paragraph font size */
    line-height: 1.6; /* Good for readability */
    margin-top: 1em;
    margin-bottom: 1em;
}

.trustPillarUnit ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default bullet points */
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-left: 25px; /* Indentation for bullet points */
}

.trustPillarUnit ol {
    /* Ordered list styles (added for completeness, though not explicitly requested, it's a common pair with ul) */
    list-style-type: decimal; /* Numbered list */
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-left: 25px;
}

.trustPillarUnit li {
    /* List item styles */
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0.8em; /* Space between list items */
}
