body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.bg-dark-blue {
    background-color: #002b5c;
}

.bg-betsson-red {
    background-color: #e30613;
}

.text-gold {
    color: #ffb81c;
}

.border-gold {
    border-color: #ffb81c;
}

.btn-primary {
    background-color: #ffb81c;
    color: #002b5c;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #e6a619;
}

.overlay-dark {
    background: rgba(0, 43, 92, 0.75);
}

.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.hero-min-height {
    min-height: 500px;
}

@media (max-width: 768px) {
    .hero-min-height {
        min-height: 100vh;
    }
    h1 {
        font-size: 1.8rem !important;
    }
    h2 {
        font-size: 1.5rem !important;
    }
    .text-xl {
        font-size: 1rem !important;
    }
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-content {
    transition: max-height 0.3s ease-out;
}

input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #002b5c;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-logo-container img {
    max-width: 120px;
    height: auto;
    filter: none !important;
}

#age-gate {
    backdrop-filter: blur(10px);
}

.btn-primary {
    text-decoration: none !important;
}/* Parent container padding */
.termsCaveBox {
    padding: 30px 20px 0 20px; /* Top and sides padding */
}

/* Moderate Typography for Headers */
.termsCaveBox h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.termsCaveBox h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.termsCaveBox h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.termsCaveBox h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.termsCaveBox h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Paragraph styles */
.termsCaveBox p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* List styles */
.termsCaveBox ul {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style-type: disc;
}

.termsCaveBox li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Remove bottom margin from the last element to maintain container padding consistency */
.termsCaveBox > *:last-child {
    margin-bottom: 0;
}
html {
    scroll-behavior: smooth;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content.active {
    max-height: 500px; 
}
#contacto input,
#contacto label {
    color: #000;
}