/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1430 0%, #2d1b4e 100%);
    min-height: 100vh;
}

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

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
    height: 100vh;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 48, 0.98);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: #ffffff;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff4524;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid #ff4524;
}

.age-number {
    font-size: 24px;
    font-weight: bold;
}

.age-modal h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1430;
}

.age-modal p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.age-question {
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.cookie-modal-content {
    background: #ffffff;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cookie-modal h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1430;
}

.cookie-modal p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.privacy-note {
    font-weight: bold;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Buttons */
.btn-primary {
    background: #ff4524;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #e63a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 69, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #666;
    padding: 15px 30px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Header */
.header {
    background: rgba(26, 20, 48, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.logo img {
    width: 30px;
}

.logo-icon {
    font-size: 24px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #ff4524;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4524;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
   
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 69, 36, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 80px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.highlight {
    color: #ff4524;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 18px;
}

.hero-image {
    max-width: 491px;
    width: 100%;


}

.hero-image img {
    width: 100%;
    display: block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Top Casinos Section */
.top-casinos {
    padding: 80px 0;
  
}

.top-casinos h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
}

.top-casinos > p {
    text-align: left;
    max-width: none;
    margin: 0 0 15px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.casino-card {
    background: linear-gradient(135deg, #3d2a5e 0%, #4a3370 100%);
    border-radius: 20px;
    padding: 0;
   border-radius: 20px;
border: 2px solid #FF140C;
background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.casino-number {
    position: absolute;
    top: -1px;
    left: 20px;
    width: 47px;
height: 37px;
flex-shrink: 0;
    border-radius: 0 0 20px 20px;
background: linear-gradient(135deg, #FF140C 0%, #FE8B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.casino-main-info {
    padding: 52px 15px 15px;
    display: flex;
   justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.casino-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    width: 100%;
}

.casino-logo-container img {
    width: 100%;
}

.casino-logo {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: lowercase;
    min-width: 120px;
    text-align: center;
}

.flag {
    width: 50px;
}

.casino-bonus {
    text-align: center;
}

.bonus-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.bonus-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.casino-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-icon {
    font-size: 20px;
}

.metric-text {
    text-align: left;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.metric-value {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin-top: 2px;
}

.metric-green {
    color: #4ade80;
}

.play-btn {
    background: #ff4524;
    color: white;
    padding: 15px 30px;
    border: none;
   border-radius: 60px;
background: linear-gradient(135deg, #FF140C 0%, #FE8B00 100%);
box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.50);
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.play-btn:hover {
    background: #e63a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 69, 36, 0.4);
}

.casino-license {

    padding: 0px 30px 20px;
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.4;
  
}

.casino-license p {
    margin-bottom: 8px;
}

.casino-license strong {
    color: #ffd700;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
   
}

.trust-content {
    display: flex;
   
    gap: 80px;
    align-items: center;
}

.trust-text {
    max-width: 866px;
    width: 78%;
}

.trust-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.trust-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    color: #333;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-card-large {
    grid-column: span 2;
}

.trust-card-icon {
   
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-card-icon img {
    width: 100%;
}

.trust-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1430;
    font-weight: 600;
}

.trust-card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.trust-image {
    position: absolute;
    right: 0;
    max-width: 403px;
    width: 20%;
}

.trust-image img {
    width: 100%;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1430 0%, #2d1b4e 100%);
}

.comparison-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
}

.comparison-section > p {
    text-align: left;
    max-width: none;
    margin: 0 0 15px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.comparison-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    color: #333;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ff4524;
    font-weight: 700;
    text-transform: capitalize;
}

.comparison-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-item {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 12px;
  
}

.comparison-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comparison-item strong {
    color: #1a1430;
    font-weight: 600;
}

.comparison-logo {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #ff4524;
    text-transform: lowercase;
   
    width: 19%;
}

.comparison-logo img {
    width: 100%;
}

.comparison-disclaimer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff4524;
}

.comparison-disclaimer p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}

/* Guides Section */
.guides-section {
    padding: 80px 0 0;
   
}

.guides-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: end;
}

.guides-character {
    max-width: 530px;
   width: 100%;
    position: relative;
}

.guides-character img {
    width: 100%;
    display: block;
}

.warrior-character {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1430 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}





.guides-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.guides-text > p {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 16px;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 80px;
}

.guide-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    color: #333;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 36, 0.2);
}

.guide-card-full {
    grid-column: span 2;
}

.guide-icon {
    
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.guide-icon img {
    width: 100%;
}

.guide-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1430;
    font-weight: 600;
}

.guide-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1430 0%, #2d1b4e 100%);
}

.faq-section h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 36, 0.2);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #ff4524;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-arrow {
    color: #ff4524;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    display: block;
}

.faq-card.active .faq-arrow {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1430 0%, #2d1b4e 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ff4524;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: #ff4524;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 460px;
}

.cert-item {
  
}

.cert-item img {
    width: 100%;
}

.cert-phone {
    grid-column: span 2;
    background: rgba(255, 69, 36, 0.2);
    border-color: rgba(255, 69, 36, 0.4);
}

.footer-legal {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.legal-section,
.disclaimer-section {
    color: #ffffff;
}

.legal-section h3,
.disclaimer-section h3 {
    color: #ff4524;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.legal-section p,
.disclaimer-section p {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 12px;
}

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

.footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .header-content {
        flex-wrap: wrap;
        gap: 26px;
    }

    .hero {
        padding-top: 140px;
    }
    .hero-content {
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .casino-main-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .play-btn {
        flex: 0 1 100%;
    }

    .trust-section {
        overflow: hidden;
    }

    .trust-text {
        width: 100%;
    }

    .trust-content {
       display: flex;
       flex-direction: column;
        gap: 40px;
    }

    .trust-image {
        position: relative;
        right: -20px;
        width: 100%;
        align-self: flex-end;
    }

    .trust-section h2 {
        font-size: 36px;
    }

    .trust-cards {
        grid-template-columns: 1fr;
    }

    .trust-card-large {
        grid-column: span 1;
    }

    .roulette-graphic-large {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .guides-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guides-character {
        width: 300px;
        height: 350px;
        margin: 0 auto;
    }

    .guides-text h2 {
        font-size: 36px;
    }

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

    .guide-card-full {
        grid-column: span 1;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-section h2 {
        font-size: 36px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-section h2 {
        font-size: 36px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-certifications {
        align-items: center;
    }

    .cert-logos {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-legal {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .nav {
        gap: 15px;
        font-size: 14px;
    }

    .casino-main-info {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .casino-metrics {
        justify-content: center;
    }

    .top-casinos h2 {
        font-size: 36px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .age-modal-content,
    .cookie-modal-content {
        margin: 20px;
        padding: 25px;
    }

    .age-buttons,
    .cookie-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .roulette-container {
        height: 300px;
    }

    .roulette-wheel {
        width: 200px;
        height: 200px;
    }

    .casino-chips {
        width: 60px;
        height: 60px;
    }

    .top-casinos h2,
    .trust-section h2,
    .comparison-section h2,
    .guides-section h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .guides-text h2 {
        font-size: 28px;
    }

    .casino-main-info {
        padding: 20px;
        gap: 15px;
    }

    .casino-logo {
        font-size: 18px;
        padding: 12px 20px;
        min-width: 100px;
    }

    .bonus-amount {
        font-size: 24px;
    }

    .casino-metrics {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .play-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .casino-license {
        padding: 15px 20px;
        font-size: 10px;
    }

    .trust-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .trust-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 auto;
    }

    .roulette-graphic-large {
        width: 250px;
        height: 250px;
    }

    .guides-character {
        width: 250px;
        height: 300px;
    }

    .warrior-character::before {
        font-size: 80px;
    }

    .guide-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .guide-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 auto;
    }

    .comparison-card {
        padding: 20px;
    }

    .comparison-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .comparison-item {
        font-size: 13px;
        gap: 12px;
    }

    .comparison-logo {
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .comparison-disclaimer {
        padding: 15px;
        margin-top: 20px;
    }

    .comparison-disclaimer p {
        font-size: 11px;
    }

    .faq-card {
        padding: 20px;
    }

    .faq-question {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .footer-main {
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .cert-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cert-item,
    .cert-phone {
        padding: 6px 8px;
        font-size: 10px;
    }

    .footer-legal {
        padding: 15px;
    }

    .legal-section h3,
    .disclaimer-section h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .legal-section p,
    .disclaimer-section p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}
              .page {
                padding: 120px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                max-width: 1200px;
                padding: 40px 20px 0;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                