body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
}

.header {
  background: #003a8f; /* Zurich blue */
  padding: 15px;
  color: white;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 80px;
  height: auto;
}

.title h1 {
  margin: 0;
  font-size: 22px;
}

.title p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}


.info-bar {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  gap: 10px;
}

.info-box {
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 140px;
}

.section {
  padding: 15px;
}

.section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.alt-bg {
  background: #e9f0f9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 15px;
}
#products {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 20px;
  color: #0a1f44;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.product-card {
  background: linear-gradient(135deg, #0a1f44, #0f3a7a);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 17px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.product-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: white;
  color: #0a1f44;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
}

.product-btn:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}


.product-card {
  background: linear-gradient(135deg, #0a1f44, #0f3a7a);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  text-align: center;
}

.product-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.product-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: white;
  color: #0a1f44;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.product-btn:hover {
  background: #e0e0e0;
}


.card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.card h3 {
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 8px 15px;
  margin-top: 10px;
  background: #0a1f44;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.btn:hover {
  background: #123b7a;
}

.game-btn {
  padding: 15px;
  border: none;
  background: #123b7a;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.news {
  list-style: none;
  padding: 0;
}

.news li {
  background: white;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
}

#rssFeedSection h2 {
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

#rssFeedContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rss-card {
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.rss-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.rss-content {
  font-size: 14px;
  color: #555;
}

.rss-link {
  display: inline-block;
  margin-top: 8px;
  color: #007bff;
  text-decoration: underline;
  font-size: 14px;
}


.footer {
  text-align: center;
  background: #0a1f44;
  color: white;
  padding: 15px;
  font-size: 14px;
}
.form-section {
  max-width: 500px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.form-section h3 {
  text-align: center;
  margin-bottom: 15px;
}

form label {
  font-size: 14px;
  margin-top: 10px;
  display: block;
}

form input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

form button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background: #003b8b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
}

.btn-clear {
  background: #999;
  margin-top: 8px;
}
.quiz-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.tabs button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: #003b8b;
  color: white;
  cursor: pointer;
}

#answers button {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #003b8b;
  background: white;
  color: #003b8b;
  cursor: pointer;
}

#answers button:hover {
  background: #003b8b;
  color: white;
}

#guessInput {
  width: 80%;
  padding: 8px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.btn-kuiz {
  padding: 10px 15px;
  background: linear-gradient(135deg, #0a1f44, #0f3a7a);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.btn-kuiz:hover {
  background: #0f3a7a;
  transform: scale(1.05);
}
#mobileControls {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

#mobileControls button {
  padding: 14px 20px;
  font-size: 20px;
  background: #222;
  border: 2px solid #555;
  border-radius: 10px;
  color: white;
}
#mobileControls button:active {
  transform: scale(0.9);
  background: #444;
}


