.rt-page {
  font-family: 'Poppins', sans-serif;
  color: #233;
  background: #ffffff;
}

.rt-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

.rt-hero {
    height: 95vh;
  padding: 170px 20px 90px;
  background: linear-gradient(135deg, #0b2c4a, #008080);
  color: #ffffff;
}

.rt-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.16);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.rt-hero h1 {
  max-width: 850px;
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.rt-hero p {
  max-width: 850px;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.rt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rt-meta span {
  padding: 10px 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.13);
  font-size: 14px;
}

.rt-section {
  padding: 80px 0;
}

.rt-light {
  background: #f6fbfc;
}

.rt-two-col {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.rt-section h2 {
  color: #0b2c4a;
  font-size: 34px;
  margin-bottom: 18px;
}

.rt-section p {
  color: #556;
  font-size: 16px;
  line-height: 1.8;
}

.rt-highlight-card,
.rt-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(11,44,74,0.09);
  border: 1px solid rgba(0,128,128,0.14);
}

.rt-highlight-card h3,
.rt-card h3 {
  color: #008080;
  margin-bottom: 12px;
}

.rt-highlight-card ul {
  padding-left: 20px;
  line-height: 1.9;
}

.rt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.rt-card {
  transition: 0.3s ease;
}

.rt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(11,44,74,0.14);
}

.rt-method-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.rt-method-flow div {
  background: #ffffff;
  color: #0b2c4a;
  padding: 18px 12px;
  text-align: center;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(11,44,74,0.08);
  border-top: 4px solid #008080;
}

.rt-info-box {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 5px solid #008080;
  background: #f0fbfb;
  border-radius: 10px;
  line-height: 1.7;
}

.rt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.rt-tags span {
  background: #eefafa;
  color: #007777;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
}

.rt-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b2c4a, #008080);
  color: #ffffff;
  text-align: center;
}

.rt-cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.rt-cta p {
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

.rt-cta-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.rt-btn {
  display: inline-block;
  background: #ffffff;
  color: #0b2c4a;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.rt-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

@media (max-width: 992px) {
  .rt-two-col,
  .rt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rt-method-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .rt-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 650px) {
  .rt-hero {
    padding: 90px 20px 60px;
  }

  .rt-hero h1 {
    font-size: 30px;
  }

  .rt-two-col,
  .rt-grid,
  .rt-method-flow {
    grid-template-columns: 1fr;
  }

  .rt-section {
    padding: 60px 0;
  }
}