* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
}

body {
  background: #f2f4f8;
  color: #222;
}

/* Header */

header {
  background: linear-gradient(135deg, #14213d, #1f3c88);
  color: white;
  text-align: center;
  padding: 25px;
}

.logo {
  width: 80px;
  margin-bottom: 8px;
}

header h1 {
  font-size: 28px;
}

/* Navigation */
nav {
  background: #0d1b2a;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 14px;
}


nav a:hover {
  background: #fca311;
  color: black;
}

/* Hero banner (used on all pages) */

.hero {
  background: linear-gradient(135deg, #1f3c88, #14213d);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* Content container */

.container {
  max-width: 1000px;
  width: 95%;
  margin: 30px auto;
  padding: 25px;
}

/* Cards */

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s
  width: 100%;
}

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

h3 {
  color: #1f3c88;
  margin-bottom: 10px;
}

/* Footer */

footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
}
/* Read More Hidden Content */
.hidden-content {
  display: none;
  margin-top: 10px;
}

/* Blue Read More Button */
.read-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #1f3c88;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.read-btn:hover {
  background-color: #14213d;
}

/* Terms List Styling */
.terms-list {
  margin: 10px 0 20px 20px;
  line-height: 1.7;
}

h4 {
  margin-top: 15px;
  color: #1f3c88;
}
/* Store Section */

.store-section {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
}

.store-section h2 {
  margin-bottom: 20px;
  color: #1f3c88;
}

.store-section img {
  width: 95%;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-container {
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}

