/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
  color: #333;
}
/* Header Styling */
.main-header {
  background-color: #001a71;
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  color: #ffcc00;
  font-weight: bold;
}

.header-buttons .btn {
  text-decoration: none;
  padding: 8px 18px;
  margin-left: 10px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  font-size: 15px;
}

.login-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.register-btn {
  background-color: #ffcc00;
  color: #111;
  border: 2px solid #ffcc00;
}

.login-btn:hover {
  background-color: #fff;
  color: #111;
}

.register-btn:hover {
  background-color: #ffaa00;
  border-color: #ffaa00;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .header-buttons .btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #001356, #010e81);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

.ref-code {
  background: #fff;
  color: #ff6600;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  background-color: #fff;
  color: #000000;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #000000;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}
/* Bonus Offer Section */
.bonus-offer {
  background-color: #002147; /* Dark Blue Background */
  color: #fff; /* White Text */
  padding: 60px 20px;
  text-align: center;
}

.bonus-offer .container {
  max-width: 1000px;
  margin: auto;
}

.bonus-offer h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.bonus-offer .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.bonus-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.bonus-item {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 450px;
  transition: transform 0.3s ease;
}

.bonus-item:hover {
  transform: translateY(-5px);
}

.bonus-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffcc00; /* A contrasting golden color */
}

.bonus-item p {
  font-size: 16px;
  line-height: 1.5;
}

.cta-btn {
  background-color: #ffcc00;
  color: #002147;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #e6b800;
  transform: scale(1.05);
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
  .bonus-offer h2 {
    font-size: 28px;
  }
  
  .bonus-item {
    padding: 15px;
  }
  
  .cta-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

/* How to Join Section */
.how-to-join {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.how-to-join h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #00187a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: #00105e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.ref {
  background: #ffffff;
  color: #000000;
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: bold;
}
/* Welcome Bonus Section */
.welcome-bonus {
  background: linear-gradient(135deg, #001356, #010e81);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.welcome-bonus h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

.welcome-bonus .highlight {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff;
}

.bonus-details p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.welcome-bonus .cta-btn {
  margin-top: 25px;
  background-color: #fff;
  color: #ff6600;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.welcome-bonus .cta-btn:hover {
  background-color: #ff6600;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background-color: #f6f6f6;
  color: #333;
  text-align: left;
}

.faq-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
  color: #ff6600;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: #fff3e0;
  color: #cc5500;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #ffe0b2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 15px;
  font-size: 15px;
  color: #444;
}

.faq-answer.open {
  padding: 15px;
  max-height: 500px; /* enough to fit text */
}
/* Testimonial Section */
.testimonial-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
  color: #ff6600;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #fff8ec;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.review {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #cc5500;
}

.stars {
  color: gold;
}
/* Footer Section */
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #ff9900;
  font-size: 18px;
}

.footer-col p {
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #aaa;
}
