body {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    color: #333;
}

.countdown-timer {
    font-weight: bold;
}

.main-card {
    max-width: 600px;
    margin: 60px auto;
    border: 2px solid #0d6efd;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
}
.previous-events {
    margin-top: 60px;
}
.event-card {
    transition: transform 0.2s;
}
.event-card:hover {
    transform: scale(1.03);
}

.language-markup {

}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 10px 26px;
    color: white;
}

.logo {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    vertical-align: middle;
}

.site-title > a{
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    text-decoration: none;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}
.nav-btn {
    background-color: #fff;
    color: #222;
    padding: 6px 14px;
    margin-left: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.nav-right .nav-btn:hover {
    background-color: #ddd;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 40px 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px 0;
    background-color: #222;
    color: white;
    margin-top: 50px;
}

/* Center Question Section */
.question-content {
    margin: 20px 0;
    font-size: 1.1em;
    text-align: initial;
}

 .answer-input {
    min-height: 50px;
}

/* End Right Sidebar */

/* === FAQ Page === */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 40px;
}

details {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

details:last-of-type {
  border-bottom: none;
}

summary {
  font-weight: 600;
  font-size: 1.1em;
  list-style: none;
  position: relative;
}

summary::marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.3em;
  color: #888;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '–';
  transform: rotate(180deg);
}

details p {
  margin: 10px 0 0 0;
  line-height: 1.6;
  color: #555;
}
