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

:root {
    --green-primary: #FFD700;
    --green-dark: #FFA500;
    --green-neon: #FFED4E;
    --green-deep: #CC8800;
    --bg-light: #2A2A2A;
    --bg-white: #1A1A1A;
    --bg-gray: #3A3A3A;
    --text-dark: #FFFFFF;
    --text-gray: #CCCCCC;
    --border-dark: #FFD700;
    --accent-cyan: #FFA500;
    --shadow-green: rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Background Effects */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(180deg, #1A1A1A 0%, #2A2A2A 50%, #1F1F1F 100%);
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* Header - Modern & Bold */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 4px solid var(--green-primary);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 50px;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

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

.nav a:hover {
    color: var(--green-primary);
}

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

.cta-button {
    background: var(--green-primary);
    border: none;
    color: var(--text-dark);
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 var(--green-dark), 0 8px 20px var(--shadow-green);
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    position: relative;
}

.cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--green-dark), 0 4px 15px var(--shadow-green);
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--green-dark), 0 2px 10px var(--shadow-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 60px;
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 var(--green-primary);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Game Container - Bold & Sharp */
.game-container {
    background: var(--bg-white);
    border: 4px solid var(--border-dark);
    padding: 40px;
    max-width: 1400px;
    width: 90vw;
    margin: 0 auto 60px;
    box-shadow: 8px 8px 0 var(--green-primary);
    position: relative;
}

.game-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
}

.score-display {
    text-align: center;
    background: var(--bg-light);
    padding: 20px 40px;
    border: 3px solid var(--border-dark);
    box-shadow: 4px 4px 0 var(--green-primary);
}

.score-display .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
}

.score {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--green-primary);
    letter-spacing: -2px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 3px 3px 0 var(--border-dark);
}

#game-canvas {
    width: 100%;
    aspect-ratio: 5 / 2;
    min-height: 400px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 4px solid var(--border-dark);
    display: block;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    cursor: pointer;
}

@media (max-width: 768px) {
    #game-canvas {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    #game-canvas {
        min-height: 450px;
    }
}

.game-info {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border: 3px solid var(--border-dark);
    box-shadow: 4px 4px 0 var(--green-primary);
    flex-wrap: wrap;
}

.game-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.game-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.game-stats .label {
    color: var(--text-gray);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.game-stats .value {
    color: var(--green-primary);
    font-weight: 900;
    font-size: 1.3rem;
    font-family: 'Orbitron', sans-serif;
    white-space: nowrap;
}

.instruction {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lives {
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.start-button {
    background: var(--green-primary);
    border: none;
    color: var(--text-dark);
    padding: 20px 70px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    margin: 30px auto 0;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 var(--green-dark), 0 10px 25px var(--shadow-green);
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.start-button:hover {
    transform: translateY(3px);
    box-shadow: 0 3px 0 var(--green-dark), 0 6px 20px var(--shadow-green);
}

.start-button:active,
.start-button.button-active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--green-dark), 0 3px 15px var(--shadow-green);
}

/* Feature Badges - Sharp Gaming Style */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-white);
    border: 3px solid var(--border-dark);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--green-primary);
}

.badge:hover {
    transform: scale(1.05);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    display: none;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: var(--bg-white);
    border-top: 4px solid var(--green-primary);
    border-bottom: 4px solid var(--green-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border: 3px solid var(--border-dark);
    box-shadow: 6px 6px 0 var(--green-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--green-primary);
    margin-bottom: 15px;
    letter-spacing: -2px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 2px 2px 0 var(--border-dark);
    word-break: break-all;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
}

/* How to Play Section */
.how-to-play {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 70px;
    letter-spacing: -1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 var(--green-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.step {
    background: var(--bg-white);
    border: 3px solid var(--border-dark);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: 6px 6px 0 var(--green-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step:hover {
    transform: scale(1.02);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--green-primary);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 4px 4px 0 var(--border-dark);
    font-family: 'Orbitron', sans-serif;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    border: 3px solid var(--border-dark);
    box-shadow: 4px 4px 0 var(--green-primary);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 6px 6px 0 var(--green-primary);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.2s ease;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.3px;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--green-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 215, 0, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: var(--bg-white);
    border-top: 4px solid var(--green-primary);
}

.contact-card-single {
    background: var(--bg-light);
    border: 4px solid var(--border-dark);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 8px 8px 0 var(--green-primary);
    display: flex;
    align-items: center;
    gap: 50px;
    transition: transform 0.2s ease;
}

.contact-card-single:hover {
    transform: scale(1.02);
}

.contact-logo {
    flex-shrink: 0;
}

.contact-logo img {
    height: 90px;
    width: auto;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.contact-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Orbitron', sans-serif;
}

.contact-value:hover {
    color: var(--green-dark);
}

/* Footer - Modern & Clean */
.footer {
    padding: 60px 20px 40px;
    background: var(--bg-light);
    border-top: 4px solid var(--border-dark);
}

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

.footer-info {
    margin-bottom: 40px;
    padding: 40px;
    background: #0D0D0D;
    border: 3px solid var(--border-dark);
    box-shadow: 6px 6px 0 var(--green-primary);
}

.footer-icon-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-icon-list img {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
    filter: grayscale(100%);
}

.footer-icon-list a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.footer-icon-list a:hover {
    transform: scale(1.1);
}

.footer-icon-list a:hover img {
    filter: grayscale(0%);
}

.footer-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-text a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-text a:hover {
    color: var(--green-dark);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Modals - Gaming Style */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

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

.modal-content {
    background: var(--bg-white);
    border: 4px solid var(--border-dark);
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 8px 8px 0 var(--green-primary);
    animation: slideUp 0.4s ease;
    position: relative;
}

.modal-content.large {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
}

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

.modal-icon {
    font-size: 5rem;
    margin-bottom: 25px;
}

.modal-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--green-primary);
}

.modal-message {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-message span {
    color: var(--green-primary);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
}

.modal-subtitle {
    color: var(--text-gray);
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

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

.modal-button {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.modal-button.primary {
    background: var(--green-primary);
    color: var(--text-dark);
    box-shadow: 0 4px 0 var(--green-dark), 0 8px 20px var(--shadow-green);
}

.modal-button.primary:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--green-dark), 0 4px 15px var(--shadow-green);
}

.modal-button.primary:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--green-dark), 0 2px 10px var(--shadow-green);
}

.modal-button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 3px solid var(--border-dark);
}

.modal-button.secondary:hover {
    background: var(--bg-light);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.modal-close:hover {
    color: var(--green-primary);
}

.modal-text {
    color: var(--text-dark);
}

.modal-text h3 {
    color: var(--green-primary);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.modal-text p {
    margin-bottom: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.98rem;
    font-weight: 500;
}

.disclaimer-box {
    background: rgba(255, 68, 68, 0.15);
    border: 3px solid #ff4444;
    padding: 20px;
    margin-bottom: 25px;
    color: #ffcccc;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 600;
}

.disclaimer-box strong {
    color: #ff4444;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-header {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
        text-shadow: 3px 3px 0 var(--green-primary);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .game-container {
        padding: 25px 20px;
        box-shadow: 6px 6px 0 var(--green-primary);
    }

    .score {
        font-size: 2.8rem;
    }

    .score-display .label {
        font-size: 0.75rem;
    }

    .game-stats {
        gap: 20px;
    }

    .game-stats .label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .game-stats .value {
        font-size: 0.9rem;
    }

    .game-stats .stat-item {
        gap: 5px;
    }

    .feature-badges {
        gap: 15px;
    }

    .badge {
        width: 70px;
        height: 70px;
    }

    .badge-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 40px 30px;
        box-shadow: 6px 6px 0 var(--green-primary);
    }

    .modal-title {
        font-size: 2.2rem;
    }

    .game-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 15px;
        order: 2;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .game-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        max-width: 400px;
    }

    .game-stats .stat-item:nth-child(3) {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .start-button {
        order: 1;
        margin: 20px 0 0;
    }

    .game-container {
        display: flex;
        flex-direction: column;
    }

    #game-canvas {
        order: 0;
    }

    .game-header {
        order: -1;
    }

    .contact-card-single {
        flex-direction: column;
        gap: 35px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 6px 6px 0 var(--green-primary);
    }

    .contact-logo img {
        height: 70px;
    }

    .contact-item {
        justify-content: center;
        gap: 15px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-icon {
        font-size: 1.5rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .game-container {
        padding: 20px 15px;
        box-shadow: 4px 4px 0 var(--green-primary);
    }

    .score {
        font-size: 2.2rem;
    }

    .game-stats {
        gap: 10px;
        max-width: 350px;
    }

    .game-stats .label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .game-stats .value {
        font-size: 0.85rem;
    }

    .game-stats .stat-item {
        gap: 4px;
    }

    .lives {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .instruction {
        font-size: 0.8rem;
    }

    .feature-badges {
        gap: 12px;
    }

    .badge {
        width: 65px;
        height: 65px;
    }

    .badge-icon {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .start-button {
        padding: 15px 50px;
        font-size: 1.2rem;
    }

    .copyright {
        font-size: 0.78rem;
    }

    .contact-card-single {
        padding: 25px 20px;
        gap: 25px;
        box-shadow: 4px 4px 0 var(--green-primary);
    }

    .contact-logo img {
        height: 60px;
    }

    .footer-info {
        padding: 25px 20px;
    }

    .footer-icon-list {
        gap: 15px;
    }

    .footer-icon-list img {
        height: 40px;
    }

    .footer-text p,
    .footer-text a {
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 18px 15px;
    }

    .faq-answer p {
        font-size: 0.92rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}
