:root {
    --primary-blue: #a7d9f7;
    --secondary-blue: #70b3e0;
    --dark-blue: #2c3e50;
    --text-dark: #333;
    --text-light: #f8f8f8;
    --background-light: #e0f2f7;
    --background-dark: #4a6fa5;
    --accent-red: #e74c3c;
    --border-light: #c0d9e5;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --font-family-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark-blue);
}

h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 1em;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 2px;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 0.8em;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--secondary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
}

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

.btn-secondary {
    background-color: var(--border-light);
    color: var(--dark-blue);
}

.btn-play {
    background-color: var(--accent-red);
    color: var(--text-light);
    font-size: 1.1em;
    padding: 15px 30px;
    margin-top: 15px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-play:hover {
    background-color: #c0392b;
    text-decoration: none;
}

.btn-submit {
    background-color: var(--dark-blue);
    color: var(--text-light);
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

.btn-submit:hover {
    background-color: #34495e;
    text-decoration: none;
}

.btn-request-rereview {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    padding: 10px 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-request-rereview:hover {
    background-color: #5fa4d3;
    text-decoration: none;
}

/* Top Disclaimer Bar */
.top-disclaimer-bar {
    background-color: #e0f2f7;
    color: var(--dark-blue);
    padding: 10px 0;
    font-size: 0.9em;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero-section {
    background: url('img/graphics/hero-background_156.jpg') no-repeat center center/cover;
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-link {
    margin-bottom: 20px;
}

.logo {
    max-width: 180px;
    height: auto;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Section Blocks */
.section-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.section-block:last-of-type {
    border-bottom: none;
}

/* Featured Platform Section */
.featured-platform-section {
    background-color: var(--background-light);
}

.rating-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 40px;
}

.rating-card.large-card {
    max-width: 700px;
    margin: 40px auto 0 auto;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.platform-logo {
    max-width: 150px;
    height: auto;
    margin-right: 15px;
}

.card-title-link {
    font-size: 2em;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
}

.card-title-link:hover {
    text-decoration: underline;
}

.card-description {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #555;
}

.card-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.card-features li::before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: 700;
}

.card-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f39c12;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.card-rating .material-symbols-outlined {
    font-size: 1.4em;
    margin-right: 2px;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.last-review-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.bonus-offer {
    font-size: 1.1em;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.bonus-offer strong {
    color: var(--accent-red);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    max-width: 60px;
    height: auto;
}

.age-warning {
    color: var(--accent-red);
    font-size: 1em;
    margin-top: 10px;
}

.current-players {
    font-size: 0.95em;
    color: #555;
    margin-top: 10px;
}

.current-players span {
    font-weight: 600;
    color: var(--dark-blue);
}

/* About Us Section */
.about-us-section {
    background-color: #fdfdfd;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 400px;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--secondary-blue);
    margin-top: 1.5em;
}

/* Bonus Terms Section */
.bonus-terms-section {
    background-color: var(--background-light);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.term-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.term-item h3 {
    color: var(--dark-blue);
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Statistics Section */
.statistics-section {
    background-color: #fdfdfd;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.stat-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-icon {
    font-size: 3.5em;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1.1em;
    color: #555;
}

/* Real Cases Section */
.real-cases-section {
    background-color: var(--background-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.case-card h3 {
    font-size: 1.4em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

/* Common Mistakes Section */
.common-mistakes-section {
    background-color: #fdfdfd;
}

.mistakes-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.mistakes-image {
    flex: 0 0 400px;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.mistakes-list {
    flex: 1;
}

.mistake-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    margin-bottom: 20px;
    height: 100%;
}

.mistake-item h3 {
    color: var(--accent-red);
    font-size: 1.5em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mistake-item .material-symbols-outlined {
    font-size: 1.2em;
}

.mistake-item p strong {
    color: var(--dark-blue);
}

/* Q&A Section (Accordion) */
.qna-section {
    background-color: var(--background-light);
}

.accordion-wrapper {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark-blue);
    background-color: #f8f8f8;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.accordion-header:hover {
    background-color: #eef7fa;
}

.accordion-header .expand-icon {
    transition: transform 0.3s ease-in-out;
}

.accordion-header.active .expand-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.accordion-content p {
    padding-bottom: 20px;
}

/* User Reviews Section */
.user-reviews-section {
    background-color: #fdfdfd;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--secondary-blue);
}

.reviewer-info h4 {
    font-size: 1.2em;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.85em;
    color: #777;
}

.review-rating {
    color: #f39c12;
    font-size: 1.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.review-rating .material-symbols-outlined {
    font-size: 1.2em;
    margin-right: 2px;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.review-text {
    font-style: italic;
    color: #555;
    flex-grow: 1;
}

/* Form Section */
.form-section {
    background-color: var(--background-light);
}

.form-description {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 40px auto;
    font-size: 1.1em;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1em;
    font-family: var(--font-family-main);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(112, 179, 224, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    color: var(--accent-red);
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #ffe0b2; /* Light orange/peach to stand out */
    border-top: 5px solid #ff9800; /* Orange border */
    padding: 50px 0;
    color: #333;
    font-size: 0.95em;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.disclaimer-header .warning-icon {
    font-size: 2.5em;
    color: #ff9800;
    margin-right: 15px;
}

.disclaimer-header h3 {
    color: #e65100; /* Darker orange for heading */
    font-size: 2em;
    margin: 0;
}

.disclaimer-block p, .disclaimer-block ul {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 15px;
}

.disclaimer-block ul {
    list-style: none;
    padding: 0;
}

.disclaimer-block ul li {
    margin-bottom: 5px;
}

.disclaimer-block ul li::before {
    content: '\2022'; /* Bullet point */
    color: #e65100;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.disclaimer-block a {
    color: #e65100;
    font-weight: 600;
}

.disclaimer-block .age-restriction {
    font-weight: 700;
    color: var(--accent-red);
    margin-top: 25px;
    font-size: 1.1em;
}

/* Footer */
.site-footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 60px 0 20px 0;
    font-size: 0.9em;
}

.site-footer .footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-brand,
.site-footer .footer-links,
.site-footer .footer-info {
    flex: 1;
    min-width: 250px;
}

.site-footer .logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.site-footer h3 {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-bottom: 20px;
}

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

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a {
    color: var(--text-light);
    text-decoration: none;
}

.site-footer ul li a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.site-footer .last-update, .site-footer .total-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.site-footer .info-icon, .site-footer .refresh-icon {
    font-size: 1.2em;
    color: var(--primary-blue);
}

.footer-responsible-gaming {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.footer-img.18plus-icon {
    max-width: 60px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Overlay */
.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: 1000;
    visibility: hidden;
    opacity: 0;
}

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

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-content h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 2em;
}

.modal-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-actions .btn {
    padding: 12px 30px;
    font-size: 1.1em;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.95em;
}

.cookie-banner-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8em;
    }

    .about-content, .mistakes-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image, .mistakes-image {
        max-width: 100%;
        margin-bottom: 30px;
    }

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

    .site-footer .footer-brand, .site-footer .footer-links, .site-footer .footer-info {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }

    .site-footer .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .site-footer .footer-links ul li {
        margin-bottom: 0;
    }

    .site-footer .last-update, .site-footer .total-reviews {
        justify-content: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        bottom: 10px;
    }

    .cookie-banner-actions {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .cookie-banner-actions .btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero-section {
        padding: 80px 0;
    }

    .section-block {
        padding: 60px 0;
    }

    .rating-card.large-card {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
    }

    .platform-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .card-title-link {
        font-size: 1.6em;
    }

    .accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .disclaimer-header h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    .logo {
        max-width: 120px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .btn-play {
        padding: 12px 25px;
        font-size: 1em;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 1.8em;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modal-actions .btn {
        width: 100%;
    }

    .form-section .main-form {
        padding: 25px;
    }

    .footer-responsible-gaming {
        gap: 15px;
    }

    .footer-img {
        max-width: 90px;
    }

    .footer-img.18plus-icon {
        max-width: 50px;
    }
}/* Parent container for policy content */
.securePolicyGrid {
    padding-top: 60px;    /* Top padding for the section */
    padding-bottom: 60px; /* Bottom padding for the section */
    padding-left: 20px;   /* Left padding for content */
    padding-right: 20px;  /* Right padding for content */
    max-width: 960px;     /* Limit content width for readability */
    margin-left: auto;    /* Center the content block */
    margin-right: auto;   /* Center the content block */
}

/* Headings within the policy grid */
.securePolicyGrid h1 {
    font-size: 28px;      /* Reduced font size for h1 */
    line-height: 1.2;     /* Improved line spacing */
    margin-top: 0;        /* No top margin for the first heading */
    margin-bottom: 24px;  /* Space below the heading */
    font-weight: 700;     /* Bold font weight */
    color: #333;          /* Darker text color for better contrast */
}

.securePolicyGrid h2 {
    font-size: 24px;      /* Reduced font size for h2 */
    line-height: 1.25;    /* Improved line spacing */
    margin-top: 32px;     /* Space above the heading */
    margin-bottom: 20px;  /* Space below the heading */
    font-weight: 700;
    color: #333;
}

.securePolicyGrid h3 {
    font-size: 20px;      /* Reduced font size for h3 */
    line-height: 1.3;     /* Improved line spacing */
    margin-top: 28px;     /* Space above the heading */
    margin-bottom: 16px;  /* Space below the heading */
    font-weight: 700;
    color: #333;
}

.securePolicyGrid h4 {
    font-size: 18px;      /* Reduced font size for h4 */
    line-height: 1.4;     /* Improved line spacing */
    margin-top: 24px;     /* Space above the heading */
    margin-bottom: 12px;  /* Space below the heading */
    font-weight: 700;
    color: #333;
}

.securePolicyGrid h5 {
    font-size: 17px;      /* Reduced font size for h5 (slightly larger than p) */
    line-height: 1.4;     /* Improved line spacing */
    margin-top: 20px;     /* Space above the heading */
    margin-bottom: 10px;  /* Space below the heading */
    font-weight: 700;
    color: #333;
}

/* Paragraphs within the policy grid */
.securePolicyGrid p {
    font-size: 16px;      /* Standard paragraph font size */
    line-height: 1.6;     /* Generous line spacing for readability */
    margin-top: 0;        /* No top margin by default */
    margin-bottom: 16px;  /* Space below paragraphs */
    color: #555;          /* Slightly lighter text color for paragraphs */
}

/* Unordered lists within the policy grid */
.securePolicyGrid ul {
    list-style: disc;     /* Default disc style */
    margin-top: 16px;     /* Space above the list */
    margin-bottom: 16px;  /* Space below the list */
    padding-left: 24px;   /* Indent list items */
    color: #555;
}

/* List items within the policy grid */
.securePolicyGrid li {
    font-size: 16px;      /* Standard font size for list items */
    line-height: 1.6;     /* Generous line spacing for readability */
    margin-bottom: 8px;   /* Space between list items */
    color: #555;
}

.logo-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logo-link h5{
    color: #fff;
    margin: 0;
    font-size: 22px;
}
