/* General Reset */
body {
    margin: 0;
    padding: 40px 40px;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8; /* Light gray background */
    color: #000; /* Black text */
    display: flex;
    align-items: center; 
    justify-content: center;
    /*
    
    height: 100vh; /* Full viewport height */ */
    overflow: hidden;
}



/* Card Style */
.card {
    background: #fff; /* White background */
    border-radius: 40px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 20px 20px; /* Spacing inside card */
    margin-bottom: 20px;
}

/* Question Text */
.question {
    font-size: 1.2rem; /* Slightly larger text */
    font-weight: bold;
    margin-bottom: 30px;
}

/* Reveal Button */
.reveal-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem; /* Larger for emphasis */
    color: rgba(0, 0, 0, 0.65); /* Slightly faded black */
    padding: 10px;
    transition: transform 0.2s ease;
}

.reveal-button:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Controls */
.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Shuffle and Info Buttons */
.control-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
    transition: color 0.2s ease;
}

.control-button:hover {
    color: #007BFF; /* Blue on hover */
}

/* Region Picker */
.region-picker {
    padding: 8px 16px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    appearance: none; /* Remove default arrow */
    background: #fff;
}


/* General Styles */


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* FAQ Sections */
.faq {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Support Section */
.support-section {
    background-color: #f0f8ff; /* Light blue */
    border: 1px solid #d1e7ff; /* Subtle border */
}

/* Privacy Section */
.privacy-section {
    background-color: #fffaf0; /* Light cream */
    border: 1px solid #ffe4b5; /* Subtle border */
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.faq-item p {
    margin: 0;
    color: #555;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}
