/* Base Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #2c3e50;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #003366;
}

.hero-text p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: #f6a300;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #f6a300;
}

.btn-outline {
  border: 2px solid #f6a300;
  color: #f6a300;
  background: transparent;
}

.btn-outline:hover {
  background: #f6a300;
  color: #fff;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}


/* === Calculator Section === */
.calc-section {
  background: #f9fbfe;
  padding: 80px 20px;
}

.calc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.calc-left {
  flex: 1;
}

.calc-left h2 {
  font-size: 2.6rem;
  color: #003366;
  margin-bottom: 20px;
}

.calc-left p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #444;
}

.calc-right {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.input-group span {
  font-weight: 600;
  margin-right: 10px;
}

.input-group input {
  flex: 1;
  border: none;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.plan-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.plan-tab {
  background: #eef2f7;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plan-tab:hover,
.plan-tab.active {
  background: #f6a300;
  color: #fff;
}

.calc-results {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.result-box {
  flex: 1;
  background: #f1f5fb;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.result-box h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #003366;
}

.result-box p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f6a300;
}


/* === Benefits Section === */
.benefits-section {
  padding: 80px 20px;
  background-color: #f5f9ff;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #003366;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.benefit-card img {
  max-width: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card h4 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* === About + Stats Section === */
.about-section {
  padding: 80px 20px;
  background-color: #f0f4ff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: start;
}

.about-info {
  color: #2c3e50;
}

.about-info h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #003366;
}

.section-intro-tag {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  color: #f06a00;
  display: inline-block;
  margin-bottom: 10px;
}

.about-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

.about-info p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.about-info .btn {
  margin-top: 20px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

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

.stat-card img {
  height: 40px;
  margin-bottom: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: bold;
  color: #f6a300;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
}



/* === About Hero Section === */
/* === About Hero Section === */
.about-hero {
  background: #f5f9ff;
  padding: 100px 20px;
}

.about-hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-hero-text {
  flex: 1;
}

.about-hero-text h1 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 20px;
}

.about-hero-text p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 550px;
}

.about-hero-text .btn {
  padding: 12px 28px;
  background: #f6a300;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-hero-text .btn:hover {
  background: #e58e00;
}

.about-hero-image {
  flex: 1;
  text-align: center;
}

.about-hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-text h1 {
    font-size: 2.2rem;
  }

  .about-hero-text p {
    max-width: 100%;
  }

  .about-hero-text .btn {
    width: 100%;
    max-width: 300px;
  }
}



/* === About Us - Mission + Stats Section === */
.about-stats-section {
  background: #ffffff;
  padding: 80px 20px;
}

.about-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.stats-text h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}

.stats-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.stats-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.stat-box {
  background: #f7f9fc;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.stat-box img {
  height: 40px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stat-box h3 {
  font-size: 1.8rem;
  color: #003366;
  margin: 10px 0 5px;
}

.stat-box p {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive support */
@media (max-width: 900px) {
  .about-stats-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-text {
    max-width: 600px;
    margin: auto;
  }
}


/* === About Benefits Section === */
.about-benefits-section {
  background: #f4f8fc;
  padding: 80px 20px;
}

.benefits-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.benefits-header h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.benefits-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
  max-width: 70px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* === Core Values Section === */
.about-values-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.values-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.values-header h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.values-header p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

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

.value-card {
  background: #f7f9fc;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.value-card img {
  max-width: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.value-card h3 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}



/* === Protection Hero Section === */
/* === Protection Hero Section === */

.protection-hero {
  background: linear-gradient(to right, #f1f6fa, #ffffff);
  padding: 100px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.wallet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.wallet-list li {
  font-size: 1rem;
  margin-bottom: 15px;
}

.wallet-list a {
  color: #0073e6;
  text-decoration: underline;
  font-size: 0.95rem;
}

.note {
  font-size: 0.85rem;
  color: #888;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}

/* === Protection Highlights Section === */
.protection-highlights {
  background: #ffffff;
  padding: 80px 20px;
}

.highlights-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.highlights-header h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.highlights-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: #f7f9fc;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.highlight-card img {
  max-width: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.highlight-card h3 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


/* === Protection FAQ === */
.protection-faq {
  background: #f0f4fa;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.protection-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #ffffff;
}

.faq-question {
  background: #f6f9fc;
  color: #003366;
  font-weight: bold;
  width: 100%;
  padding: 18px;
  text-align: left;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e4eef7;
}

.faq-answer {
  display: none;
  padding: 20px;
  font-size: 0.98rem;
  color: #444;
  line-height: 1.6;
  border-top: 1px solid #e0e0e0;
}

.faq-answer a {
  color: #0073e6;
  text-decoration: underline;
}


/* === Rewards Hero Section === */
/* === Rewards Hero Section === */

.reward-hero {
  background: linear-gradient(to right, #eef7ff, #ffffff);
  padding: 100px 20px;
}

.reward-hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #f6a300;
}

.hero-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 12px;
}

.hero-text .progress {
  margin-top: 10px;
  font-weight: 500;
  color: #555;
}

.hero-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #f6a300;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-text .btn:hover {
  background: #e59500;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .reward-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}



/* === Rewards Section Redesign === */
.rewards-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.rewards-container {
  max-width: 1200px;
  margin: auto;
}

.rewards-section h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.rewards-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.reward-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.reward-card {
  background: #f9fbfd;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.reward-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.reward-top {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.reward-top img {
  height: 50px;
  width: 50px;
  border-radius: 8px;
  background: white;
}

.reward-top h3 {
  font-size: 1.8rem;
  color: #003366;
  margin: 0;
}

.reward-top p {
  font-size: 0.95rem;
  color: #777;
  margin: 2px 0 0;
}

.reward-body h4 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.reward-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.reward-card .btn {
  margin-top: 20px;
  padding: 10px 24px;
  background: #f6a300;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.reward-card .btn:hover {
  background: #e59500;
}


/* === Reward Rule Description Section === */
.reward-rules {
  background: #f5f7fa;
  padding: 80px 20px;
}

.rules-container {
  max-width: 1000px;
  margin: auto;
}

.rules-header {
  text-align: center;
  margin-bottom: 50px;
}

.rules-header h2 {
  font-size: 2.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.rules-header p {
  font-size: 1.05rem;
  color: #666;
}

.rules-steps {
  display: grid;
  gap: 30px;
}

.rule-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 12px;
  background: #fff;
  padding: 25px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}

.rule-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
  background-color: #003366;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  min-width: 50px;
  text-align: center;
}

.step-content h3 {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 10px;
}

.step-content p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .rule-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: auto;
  }
}


/* === FAQ Accordion Section === */
.reward-faq {
  background-color: #ffffff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.reward-faq h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 40px;
}

.faq-item {
  background: #f7faff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #f0f4fc;
  color: #003366;
  padding: 18px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e0ebf5;
}

.faq-answer {
  padding: 20px;
  font-size: 0.98rem;
  color: #555;
  display: none;
  border-top: 1px solid #dde3ec;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}