:root {
  --primary-color: #0b396c;
  --header-color: #6c370b;
}

body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

.text-primary {
  color: var(--header-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.hero {
  height: 40vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(11, 57, 108, 0.85), rgba(11, 57, 108, 0.85));
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}


.card-title {
  color: var(--primary-color);
}

.card ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.card ul li {
  margin-bottom: 0.5rem;
}
.plan-card {
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(11, 57, 108, 0.2);
  border-color: #083258;
}

.plan-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

.plan-price span {
  font-size: 1rem;
  color: #666;
  display: block;
  font-weight: normal;
}

.plan-card ul {
  padding-left: 1rem;
  list-style: none;
}

.plan-card ul li::before {
  content: "✔";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
}
.card-body{
  background-image: repeating-linear-gradient(0deg, hsla(262,0%,82%,0.38) 0px, hsla(262,0%,82%,0.38) 1px,transparent 1px, transparent 3px),repeating-linear-gradient(90deg, hsla(262,0%,82%,0.38) 0px, hsla(262,0%,82%,0.38) 1px,transparent 1px, transparent 3px),linear-gradient(90deg, rgb(243,244,245),rgb(243,244,245));
}