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

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #8EC5FC 0%, #E0C3FC 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #4a5568;
    line-height: 1.6;
    overflow-x: hidden;
}

.layout-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.container {
    max-width: 900px;
    flex: 1;
    width: 100%;
}

/* Ad Sidebars */
.ad-sidebar {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.ad-placeholder {
    background: rgba(255, 255, 255, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 0.9em;
    backdrop-filter: blur(5px);
}

@media (max-width: 1100px) {
    .ad-sidebar {
        display: none;
    }

    .layout-wrapper {
        padding: 10px;
    }
}

/* Header */
header {
    background: white;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(142, 197, 252, 0.5);
    text-align: center;
    border: 4px solid white;
    position: relative;
    overflow: hidden;
}

.header-flag {
    display: inline-block;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transform-origin: center;
}

.header-flag svg {
    width: 80px;
    height: 40px;
    border-radius: 8px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: #6B46C1;
    font-weight: 800;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2em;
    color: #805AD5;
    font-weight: 500;
}

/* Screen Management */
.screen {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid white;
    backdrop-filter: blur(10px);
}

.screen.active {
    display: block;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Welcome Screen */
.welcome-content {
    text-align: center;
}

.welcome-icon {
    font-size: 5em;
    margin-bottom: 10px;
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(20deg);
    }

    75% {
        transform: rotate(-20deg);
    }
}

.welcome-content h2 {
    color: #2D3748;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 800;
}

.welcome-description {
    font-size: 1.2em;
    color: #718096;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #9F7AEA;
    box-shadow: 0 15px 30px rgba(159, 122, 234, 0.2);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.feature-card h4 {
    color: #4A5568;
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-card p {
    color: #A0AEC0;
    font-size: 0.9em;
}

/* Encouragement Box */
.encouragement-box {
    background: #FFF5F7;
    border: 2px dashed #FEB2B2;
    padding: 20px;
    margin: 30px 0;
    border-radius: 20px;
    text-align: center;
}

.encouragement-box p {
    color: #C53030;
    font-size: 1.1em;
    margin: 0;
}

/* Buttons */
.btn {
    padding: 18px 40px;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(118, 75, 162, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(118, 75, 162, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: white;
    color: #667EEA;
    border: 2px solid #667EEA;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: #EBF4FF;
    transform: translateY(-3px);
}

/* Progress Container */
.progress-container {
    margin-bottom: 30px;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-size: 0.9em;
    color: #A0AEC0;
    font-weight: 700;
    text-transform: uppercase;
}

.progress-percent {
    font-size: 1.1em;
    color: #667EEA;
    font-weight: 800;
}

.progress-bar {
    width: 100%;
    height: 15px;
    background: #EDF2F7;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4FD1C5 0%, #63B3ED 100%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    animation: moveStripe 1s linear infinite;
}

@keyframes moveStripe {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}

/* Quiz Header */
.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.question-counter,
.score-display {
    background: white;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.counter-label,
.score-label {
    display: block;
    font-size: 0.7em;
    color: #A0AEC0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-numbers,
.score-numbers {
    font-size: 1.4em;
    color: #4A5568;
    font-weight: 800;
}

.score-numbers {
    color: #48BB78;
}

/* Question Container */
.question-badge {
    font-size: 4em;
    text-align: center;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.question-text {
    font-size: 1.6em;
    color: #2D3748;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-btn {
    background: white;
    border: 2px solid #EDF2F7;
    padding: 20px 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 1.1em;
    color: #4A5568;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.answer-btn:hover:not(.disabled) {
    border-color: #667EEA;
    transform: translateX(5px);
    background: #F7FAFC;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.answer-btn.correct {
    background: #C6F6D5;
    border-color: #48BB78;
    color: #22543D;
    animation: pulseGreen 0.5s;
}

.answer-btn.incorrect {
    background: #FED7D7;
    border-color: #F56565;
    color: #742A2A;
    animation: shake 0.4s;
}

@keyframes pulseGreen {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

.answer-btn.disabled {
    cursor: default;
    opacity: 0.8;
}

#next-btn {
    margin-top: 30px;
    width: 100%;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results Screen */
.results-content {
    text-align: center;
}

.result-icon {
    font-size: 6em;
    margin: 20px 0;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#result-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.result-status.pass #result-title {
    color: #48BB78;
}

.result-status.fail #result-title {
    color: #ECC94B;
}

.score-summary {
    background: white;
    padding: 30px;
    border-radius: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid #EDF2F7;
}

.final-score {
    font-size: 3.5em;
    font-weight: 800;
    color: #2D3748;
}

.percentage {
    font-size: 2em;
    color: #667EEA;
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.explanation-container {
    margin-top: 15px;
    background: #E6FFFA;
    border: 2px solid #38B2AC;
    padding: 15px;
    border-radius: 15px;
    color: #234E52;
    animation: slideUp 0.3s ease;
    font-size: 1.1em;
    line-height: 1.5;
}

.explanation-title {
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
    color: #2C7A7B;
}

/* Review Screen */
.review-item {
    background: white;
    border: 2px solid #EDF2F7;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.review-item.correct {
    border-color: #48BB78;
    background: #F0FFF4;
}

.review-item.incorrect {
    border-color: #F56565;
    background: #FFF5F5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
}

.status-correct {
    color: #2F855A;
}

.status-incorrect {
    color: #C53030;
}

/* Particles */
.particle {
    position: fixed;
    pointer-events: none;
    animation: particleFloat 1s ease-out forwards;
    z-index: 9999;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--tr));
        opacity: 0;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: white;
    opacity: 0.9;
    font-size: 0.9em;
}

/* Responsive */
/* Responsive */
@media (max-width: 600px) {
    .layout-wrapper {
        padding: 10px;
    }

    .screen {
        padding: 20px;
        border-radius: 20px;
    }

    header {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .header-content h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .welcome-icon {
        font-size: 3.5em;
    }

    .welcome-content h2 {
        font-size: 1.6em;
    }

    .question-text {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .question-badge {
        font-size: 3em;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 15px 20px;
        font-size: 1em;
    }

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

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

    .slider-container {
        padding: 15px;
    }

    .final-score {
        font-size: 2.5em;
    }

    .result-icon {
        font-size: 4em;
    }

    .score-summary {
        padding: 20px;
    }
}

/* Quiz Selection Styles */
.quiz-selection-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.selection-section {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.selection-section:hover {
    border-color: #9F7AEA;
    box-shadow: 0 10px 25px rgba(159, 122, 234, 0.1);
}

.selection-section h3 {
    color: #4A5568;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 800;
}

.selection-section p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #A0AEC0;
    font-weight: 700;
    font-size: 0.9em;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px dashed #CBD5E0;
}

.divider::before {
    margin-right: 15px;
}

.divider::after {
    margin-left: 15px;
}

/* Blocks Grid */
.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.block-btn {
    background: #EDF2F7;
    border: 2px solid #CBD5E0;
    padding: 15px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    color: #4A5568;
    transition: all 0.2s ease;
    font-size: 0.9em;
}

.block-btn:hover {
    background: #EBF4FF;
    border-color: #667EEA;
    color: #5A67D8;
    transform: translateY(-2px);
}

/* Slider Styles */
.slider-container {
    margin-bottom: 25px;
    background: #F7FAFC;
    padding: 20px;
    border-radius: 15px;
}

.slider-container label {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    color: #4A5568;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-value {
    background: #667EEA;
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 1.1em;
}

input[type=range] {
    width: 100%;
    margin: 10px 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #CBD5E0;
    border-radius: 5px;
}

input[type=range]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #667EEA;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #A0AEC0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: #A0AEC0;
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 5px;
}


/* Fancy Booking Button */
.btn-booking {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1em;
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-booking:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(72, 187, 120, 0.4);
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    color: white;
}

.btn-booking:active {
    transform: translateY(-2px) scale(0.98);
}

/* Fireworks */
.firework-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: explode 1s ease-out forwards;
}

@keyframes explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--fx), var(--fy)) scale(0);
        opacity: 0;
    }
}

/* Temporary Ad Placeholder for Local Testing */
ins.adsbygoogle {
    background: #f0f0f0;
    border: 1px dashed #ccc;
    position: relative;
}

ins.adsbygoogle::before {
    content: 'Ad Space (Will load on live site)';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 0.8em;
    text-align: center;
    width: 100%;
}

/* Game Cards (Index) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-card {
    text-decoration: none;
    color: inherit;
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #9F7AEA;
    box-shadow: 0 15px 30px rgba(159, 122, 234, 0.2);
}

.game-card-icon {
    font-size: 3em;
    margin-bottom: 10px;
    display: block;
}

.game-card h4 {
    margin: 10px 0;
    color: #4A5568;
    font-size: 1.2em;
    font-weight: 700;
}

.game-card p {
    font-size: 0.9em;
    color: #A0AEC0;
    margin: 0;
}

/* Social Media Section */
.social-section {
    margin-top: 100px;
    text-align: center;
}

.social-media-links {
    display: inline-flex;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 5px solid transparent;
    font-size: 5rem;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-link.tiktok:hover {
    border-color: #000000;
    background: linear-gradient(135deg, #69C9D0 0%, #EE1D52 100%);
    color: white;
}

.social-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.social-link.tiktok .social-icon {
    color: #000000;
}

.social-link.tiktok:hover .social-icon {
    color: white;
}

.social-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 0.65em;
    color: #A0AEC0;
    font-weight: 500;
}

.social-link:hover .social-label {
    color: rgba(255, 255, 255, 0.9);
}

.social-name {
    font-size: 0.75em;
    font-weight: 700;
    color: #2D3748;
}

.social-link:hover .social-name {
    color: white;
}

/* Ghost Game Styles */
.ghost-question-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ghosts-container {
    position: relative;
    height: 400px;
    background: #2D3748;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #4A5568;
    margin-bottom: 20px;
    cursor: crosshair;
}

.ghost {
    position: absolute;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(5px);
}

.ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: scale(1.1);
    z-index: 10;
}

.ghost.hit {
    background: #ef4444;
    transform: scale(0.9);
}

.player-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #4A5568;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.player-cannon {
    font-size: 3em;
    transform-origin: center;
    transition: transform 0.1s;
}

.arena-hud {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 15px;
    align-items: center;
}

.health-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 300px;
}

.health-bar-bg {
    flex: 1;
    height: 15px;
    background: #EDF2F7;
    border-radius: 10px;
    overflow: hidden;
}

.health-bar {
    height: 100%;
    background: #48BB78;
    width: 100%;
    transition: width 0.3s, background-color 0.3s;
}

.health-text, .level-container {
    font-weight: 700;
    color: #4A5568;
    font-size: 0.9em;
}

.level-value {
    color: #667EEA;
    font-size: 1.2em;
    margin-left: 5px;
}

/* FAQ Section */
.faq-section {
    margin-top: 50px;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-section h3 {
    color: #2D3748;
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EDF2F7;
}

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

.faq-item h4 {
    color: #4A5568;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-item p {
    color: #718096;
    line-height: 1.6;
    font-size: 1em;
}

.faq-item a {
    color: #667EEA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-item a:hover {
    color: #5A67D8;
    text-decoration: underline;
}