* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

:root {
  --primary-blue: #3e9dcd;
  --accent-orange: #ff6600;
  --light-bg: #f4f9fc;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}
.text-white {
  color: var(--white);
}
.bg-light {
  background-color: var(--light-bg);
}
.bg-blue {
  background-color: var(--primary-blue);
  color: var(--white);
}

.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 2rem;
}
.mb-4 {
  margin-bottom: 3rem;
}
.mb-5 {
  margin-bottom: 4rem;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent-orange);
  color: var(--white);
}

.btn-orange {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.navbar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 2px solid var(--primary-blue);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-blue);
}

.hero-section {
  background: linear-gradient(rgba(35, 43, 47, 0.9), rgba(53, 62, 72, 0.95)),
    url("/assets/images/1.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 52px;
  margin-bottom: 25px;
}

.hero-section .subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-title {
  color: var(--primary-blue);
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title.text-white {
  color: var(--white);
}

.text {
  color: #ffffff;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.intro-text {
  font-size: 16px;
  color: #666;
}

.content-grid {
  display: flex;
  justify-content: center;
}

.text-block {
  max-width: 900px;
}

.feature-list {
  margin: 30px 0;
}

.feature-list li {
  list-style: none;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.feature-list li::before {
  content: "✔";
  color: var(--accent-orange);
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: bold;
}

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

.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--primary-blue);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.card h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 20px;
}

.card p {
  margin-bottom: 0;
  color: #555;
}

.table-responsive {
  overflow-x: auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

table th,
table td {
  padding: 20px 25px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

table th {
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}

table tr:last-child td {
  border-bottom: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-num {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 15px;
  line-height: 1;
}

.step h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

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

.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}

.columns-2 li {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-item .icon {
  color: var(--accent-orange);
  font-size: 28px;
  margin-right: 20px;
  margin-top: -5px;
}

.commitment-box {
  text-align: center;
  background: var(--light-bg);
  padding: 60px;
  border-radius: 15px;
  border-left: 6px solid var(--accent-orange);
}

.footer-section {
  background: #08121a;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }
  .columns-2 {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 60px 0;
  }
  .cards-grid {
    gap: 20px;
  }
  .section-header {
    margin-bottom: 40px;
  }
}
