body {
  font-family: var(--font-primary);
  font-size: var(--body);
  line-height: var(--lh-body);
  color: var(--text-dark);
}

h1 {
  font-size: 64px;
  line-height: var(--lh-heading);
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 576px) {
  h1 {
    font-size: 38px;
    line-height: 1.3;
  }
}

.text-shadow-none {
  text-shadow: none !important;
}

h2 {
  font-size: 40px;
  line-height: var(--lh-heading);
  font-family: "Inria Sans", sans-serif;
  font-weight: 500;
}

@media (max-width: 576px) {
  h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}

h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  font-family: "Inria Sans", sans-serif;
  color: rgb(19, 19, 19);
}

@media (max-width: 576px) {
  h3 {
    font-size: 28px;
    line-height: 1.3;
  }
}

h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  font-family: "Inria Sans", sans-serif;
  color: rgb(19, 19, 19);
}

@media (max-width: 576px) {
  h4 {
    font-size: 22px;
    line-height: 1.3;
  }
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Inria Sans", sans-serif;
}

@media (max-width: 576px) {
  h5 {
    font-size: 18px;
    line-height: 1.3;
  }
}

h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Inria Sans", sans-serif;
}

@media (max-width: 576px) {
  h6 {
    font-size: 16px;
    line-height: 1.3;
  }
}

p {
  font-size: 15px;
  font-weight: 400;
  color: rgb(57, 57, 57);
  font-family: "Inter", sans-serif;
}

@media (max-width: 576px) {
  p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.text-small {
  font-size: 14.5px;
  font-weight: 400;
  color: #5f5f5f;
  font-family: "Inter", sans-serif;
}

@media (max-width: 576px) {
  .text-small {
    font-size: 13px;
  }
}

li {
  font-size: 15px;
  font-weight: 400;
  color: rgb(30, 30, 30);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

@media (max-width: 576px) {
  li {
    font-size: 14px;
    line-height: 1.6;
  }
}

a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: var(--primary);
}

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

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

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

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

.section {
  margin-top: 90px;
  margin-bottom: 90px;
}

@media (max-width: 576px) {
  .section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.section-margin {
  margin-top: 90px;
  margin-bottom: 90px;
}

@media (max-width: 576px) {
  .section-margin {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 576px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.bg-gradient {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.06),
      transparent 40%
    ),
    linear-gradient(135deg, #0d47a1 0%, #00227f 60%, #001a5c 100%);
}

.section-tag {
  color: #0a31bd;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 576px) {
  .section-tag {
    font-size: 13px;
  }
}

.section-title {
  margin-bottom: 30px;
  text-align: start;
  font-weight: 500;
  color: #001a5c;
}


@media (max-width: 767.98px) {
  .section-title {
    font-size: 30px;
    line-height: 1.2;
  }
}

.section-desc {
  max-width: 750px;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .section-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

.link-text {
  color: #0a31bd;
  font-weight: 500;
  letter-spacing: 1px;
}

.section-divider {
  width: 100%;
  height: 1.5px;
  background: #eaeaea;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .section-divider {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.content-tag {
  display: inline-block;
  background: #e8f0fb;
  color: #1a3c6e;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 3px 10px;
  margin: 5px 5px 6px 0;
  letter-spacing: 0.03em;
}

@media (max-width: 576px) {
  .content-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
}

html {
  scroll-behavior: smooth;
}