:root {
    --color-primary: #E50914; /* Red */
    --color-secondary: #0A0A0A; /* Dark Black */
    --color-accent: #333333; /* Slightly lighter black for contrast */
    --color-text-light: #F5F5F5; /* Off-white for main text */
    --color-text-dark: #1A1A1A; /* Dark text on light backgrounds */
    --color-background: #121212; /* Main background */
    --color-border: #444444; /* Border color */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-info: #17a2b8;
    --color-blue-button: #007bff; /* Specific blue for Unibet button */

    --font-family-primary: 'Poppins', sans-serif;
    --max-width-container: 1200px;
    --header-height: 80px;
    --top-info-bar-height: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    background-color: var(--color-background);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: #FF4D4D;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

.container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none !important;
}

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

.btn-primary:hover {
    background-color: #FF4D4D;
    transform: translateY(-2px);
    color: var(--color-text-light);
}

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

.btn-secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.btn-tertiary:hover {
    background-color: #555555;
    transform: translateY(-2px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    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(--color-secondary);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border:1px solid var(--color-primary)
}

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

.modal-title {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.modal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.modal-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-modal-content {
    max-width: 600px;
    text-align: left;
}

.cookie-categories {
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
    accent-color: var(--color-primary);
}

.cookie-category label {
    font-weight: 600;
    color: var(--color-text-light);
    flex-grow: 1;
    cursor: pointer;
}

.cookie-category .cookie-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-left: 2.5rem;
    flex-basis: 100%;
}

.cookie-policy-link {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-actions {
    margin-top: 2rem;
}

.cookie-actions .btn {
    flex-grow: 1;
    max-width: 180px;
}

.hidden {
    display: none !important;
}

.top-info-bar {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}

.top-info-bar p {
    margin: 0;
}

.main-header {
    background-color: var(--color-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-accent);
    position: sticky;
    top: var(--top-info-bar-height);
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--color-text-light);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    color: var(--color-primary);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
@media (max-width:767px) {
    .main-nav ul{
        display: none!important;
    }
}
.main-nav a {
    color: var(--color-text-light);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.header-tagline {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-accent);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(pictures/media/hero-background_166.jpg) no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-primary);
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-light);
    animation: slideInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.cta-hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    animation: slideInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

section {
    padding: 3rem 0;
    background-color: var(--color-background);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    position: relative;
    color: var(--color-primary);
}

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

.offers-showcase-section {
    background-color: var(--color-secondary);
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.offer-card {
    background-color: var(--color-accent);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 2rem;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(20px);
}

.offer-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.offer-image-link {
    display: block;
    width: 100%;
    max-width: 250px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.offer-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.offer-image-link:hover .offer-image {
    transform: scale(1.05);
}

.offer-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
}

.offer-title {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.offer-rating {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.offer-rating .stars {
    color: #FFD700;
}

.offer-description {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.offer-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.offer-benefits li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    font-size: 1rem;
}

.offer-benefits li i {
    color: var(--color-success);
    margin-right: 0.8rem;
}

.offer-license {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: #2a2a2a;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    border: 1px solid var(--color-primary);
    align-self: flex-start;
}

.offer-license .license-text {
    color: var(--color-primary);
    font-weight: 600;
    margin-right: 0.8rem;
    font-size: 0.95rem;
}

.offer-license .license-link {
    color: var(--color-text-light);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.offer-license .license-link:hover {
    color: var(--color-primary);
}

.offer-bonus {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 2rem;
    background-color: #2a2a2a;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    border: 1px dashed var(--color-primary);
    align-self: flex-start;
}

.offer-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: auto;
    min-width: 200px;
    margin-top: auto;
    align-self: flex-end;
}

.about-us-section {
    background-color: var(--color-background);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    flex-shrink: 0;
}

.about-text {
    flex-grow: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.useful-info-section {
    background-color: var(--color-secondary);
}

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

.info-card {
    background-color: var(--color-accent);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(20px);
}

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

.info-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #c0c0c0;
}

.user-reviews-section {
    background-color: var(--color-background);
}

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

.review-card {
    background-color: var(--color-accent);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(20px);
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--color-primary);
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.review-rating {
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    color: #c0c0c0;
    font-style: italic;
    line-height: 1.7;
}

.faq-section {
    background-color: var(--color-secondary);
}

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

.accordion-item {
    background-color: var(--color-accent);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-text-light);
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    gap: 15px;
}

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

.accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #2a2a2a;
}

.accordion-content.active {
    max-height: 200px;
    padding: 1.5rem;
}

.accordion-content p {
    color: #c0c0c0;
    margin-bottom: 0;
}

.anj-importance-section {
    background-color: var(--color-background);
}

.anj-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    justify-content: center;
}

.anj-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    flex-shrink: 0;
}

.anj-text {
    flex-grow: 1;
    min-width: 300px;
}

.anj-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.anj-cta-btn {
    margin-top: 1.5rem;
}

.disclaimer-section {
    background-color: #220000;
    padding: 4rem 0;
    border-top: 5px solid var(--color-primary);
    border-bottom: 5px solid var(--color-primary);
    margin-top: 4rem;
    box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.3);
}

.disclaimer-content {
    background-color: var(--color-secondary);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-primary);
    opacity: 0;
    transform: translateY(20px);
}

.disclaimer-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--color-warning);
}

.disclaimer-content h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.disclaimer-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.disclaimer-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.disclaimer-content ul li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.disclaimer-content ul li a {
    color: var(--color-primary);
    text-decoration: underline;
}

.main-footer {
    background-color: var(--color-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--color-accent);
    color: #c0c0c0;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-about .logo-link {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 0.5rem;
}

.age-restriction {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1rem;
}

.footer-section h3 {
    color: var(--color-text-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #c0c0c0;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--color-primary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--color-border);
    background-color: #2a2a2a;
    color: var(--color-text-light);
    font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: #888888;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.newsletter-privacy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:not(.footer-18-plus):hover {
    transform: scale(1.05);
}

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

.copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888888;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .main-nav ul {
        gap: 1rem;
    }
    .offer-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .offer-image-link {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }
    .offer-content {
        align-items: center;
    }
    .offer-benefits {
        text-align: center;
        padding-left: 0;
    }
    .offer-benefits li {
        text-align: center;
    }
    .offer-license {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        align-self: center;
    }
    .offer-license .license-text {
        margin-right: 0;
    }
    .offer-bonus {
        align-self: center;
    }
    .offer-cta-btn {
        align-self: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .main-header {
        position: static;
        top: 0;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .logo-container {
        margin-bottom: 1rem;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .main-nav a {
        padding: 0.3rem 0;
    }
    .header-tagline {
        margin-top: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-content, .anj-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image, .anj-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .about-text, .anj-text {
        min-width: unset;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        min-width: unset;
        width: 100%;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
    .disclaimer-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .disclaimer-icon {
        font-size: 2.5rem;
    }
    .cookie-actions .btn {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .top-info-bar p{
        font-size: 12px;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    .modal-content {
        padding: 1rem;
    }
    .modal-title {
        font-size: 1.2rem;
    }
    .modal-content p{
        font-size: 12px;
    }
    .cookie-category label{
        font-size: 12px;
    }
    .cookie-category .cookie-desc{
        font-size: 12px;
    }
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .cookie-category .cookie-desc {
        margin-left: 0;
    }
    .offer-title {
        font-size: 1.8rem;
    }
    .offer-bonus {
        font-size: 1rem;
    }
    .cookie-policy-link{
        margin-top: 1rem!important;
    }
    .offer-cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    .accordion-header {
        font-size: 1rem;
        padding: 1.2rem;
    }
    .disclaimer-content {
        padding: 2rem;
    }
    .disclaimer-title {
        font-size: 1.8rem;
    }
    .disclaimer-icon {
        font-size: 2rem;
    }
    .footer-logos {
        gap: 1rem;
    }
    .footer-logo {
        max-width: 90px;
    }
}/* Styles for the legal content wrapper */
.legalFoldBox {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    /* Optional: Sets a maximum width for better readability on large screens and centers the block */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Heading 1 styles */
.legalFoldBox h1 {
    font-size: 1.8rem; /* Moderate size for main heading */
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Heading 2 styles */
.legalFoldBox h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
    line-height: 1.25;
}

/* Heading 3 styles */
.legalFoldBox h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.3;
}

/* Heading 4 styles */
.legalFoldBox h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
    line-height: 1.35;
}

/* Heading 5 styles */
.legalFoldBox h5 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: bold;
    line-height: 1.4;
}

/* Paragraph styles */
.legalFoldBox p {
    font-size: 1rem; /* Base font size */
    margin-top: 0;
    margin-bottom: 1rem; /* Space between paragraphs */
    line-height: 1.6; /* For better readability */
}

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

/* List item styles */
.legalFoldBox li {
    font-size: 1rem; /* Inherit or explicitly set */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Ensure readability for list item text */
}
.useful-info-section .info-grid {
    display: flex;
    flex-wrap: wrap; /* Позволяет переносить элементы на новый ряд */
    gap: 20px;       /* Расстояние между карточками */
    justify-content: space-between; /* Равномерное распределение карточек */
}

.useful-info-section .info-card {
    flex: 1 1 calc(50% - 10px); /* Каждая карточка занимает примерно половину ширины с учётом gap */
    box-sizing: border-box;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .useful-info-section .info-card {
        flex: 1 1 100%; /* В один ряд на мобильных */
    }
}
.user-reviews-section .reviews-grid {
    display: flex;
    flex-wrap: wrap;       /* Позволяет переходить на второй ряд */
    gap: 20px;             /* Расстояние между отзывами */
    justify-content: space-between;
}

.user-reviews-section .review-card {
    flex: 1 1 calc(50% - 10px); /* Каждая карточка занимает половину ширины с учетом gap */
    box-sizing: border-box;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .user-reviews-section .review-card {
        flex: 1 1 100%; /* В один ряд на мобильных */
    }
}
