body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f0; /* grey outer background */
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff; /* white content background */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* subtle shadow for contrast */
  border-radius: 8px; /* optional: rounded corners */
}

header {
  text-align: center;
}
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #0073e6;
}
.carousel-container {
  overflow: hidden;
  background: #f0f0f0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}
.carousel {
  display: flex;
  animation: scroll 30s linear infinite;
}
.carousel-item {
  flex: 0 0 auto;
  padding: 0 20px;
  white-space: nowrap;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: #888;
}
.quiz-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff; /* optional: to stand out */
}

.quiz-container {
  text-align: center;
  max-width: 500px;
  background-color: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quiz-button {
  display: inline-block;
  background-color: #0073e6;
  color: #fff;
  padding: 12px 24px;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  font-size: 16px;
}

.quiz-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}

.download-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.google-play-badge {
  max-width: 200px;
  height: auto;
}
.quiz-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f0f0f0;
}

.quiz-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  text-align: center;
}

.quiz-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.quiz-button {
  display: inline-block;
  background-color: #0073e6;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 30px;
  transition: background 0.3s;
}

.quiz-button:hover {
  background-color: #005bb5;
}

.divider {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.google-play-badge {
  max-width: 200px;
  height: auto;
}
