:root {
  --br-navy: #07311d;
  --br-navy-2: #052415;
  --br-blue: #00823c;
  --br-blue-2: #18a957;
  --br-sky: #edf8f1;
  --br-sky-2: #f6fbf8;
  --br-teal: #00823c;
  --br-green: #07311d;
  --br-orange: #ed8a19;
  --br-violet: #5b45c8;
  --br-gold: #d79720;
  --br-ink: #07311d;
  --br-muted: #4f665a;
  --br-border: #d9eadf;
  --br-shadow: 0 16px 45px rgba(7, 49, 29, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--br-ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.btn {
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0.72rem 1.12rem;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--br-navy), var(--br-blue));
  border-color: var(--br-blue);
  box-shadow: 0 12px 24px rgba(0, 130, 60, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--br-navy);
  border-color: var(--br-navy);
}

.btn-outline-primary {
  color: var(--br-blue);
  border-color: var(--br-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--br-blue);
  border-color: var(--br-blue);
}

.top-strip {
  background: linear-gradient(90deg, var(--br-navy), var(--br-navy-2));
  color: #fff;
  font-size: 0.9rem;
  padding: 0.55rem 0;
}

.top-tagline,
.top-contact,
.top-contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-contact {
  gap: 1rem;
}

.top-contact .divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.main-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 234, 223, 0.9);
  box-shadow: 0 10px 28px rgba(7, 49, 29, 0.08);
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  z-index: 1030;
}

.main-navbar.is-fixed {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

.navbar-spacer {
  height: 0;
}

.main-navbar.is-stuck {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(7, 49, 29, 0.16);
}

.navbar-toggler {
  border: 1px solid rgba(7, 49, 29, 0.28);
  border-radius: 8px;
  margin-left: auto;
  padding: 0.5rem 0.62rem;
}

.navbar-brand img {
  width: 205px;
  height: auto;
  transition: width 0.2s ease;
}

.main-navbar .nav-link {
  color: var(--br-ink);
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0 0.24rem;
  padding: 2rem 0.2rem 1.85rem;
  position: relative;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    padding 0.2s ease;
}

.main-navbar.is-stuck .navbar-brand img {
  width: 178px;
}

.main-navbar.is-stuck .nav-link {
  padding-top: 1.35rem;
  padding-bottom: 1.2rem;
}

.main-navbar.is-stuck .nav-link::after {
  bottom: 0.85rem;
}

section[id] {
  scroll-margin-top: 96px;
}

.main-navbar .nav-link::after {
  background: var(--br-blue);
  bottom: 1.4rem;
  content: "";
  height: 3px;
  left: 0.2rem;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  width: calc(100% - 0.4rem);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--br-blue);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.section,
.hero,
.page-hero {
  padding: 5rem 0;
}

.home-hero {
  background: url("../images/home-hero.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.section-kicker {
  color: var(--br-blue);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--br-ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 0.95rem;
}

p {
  color: var(--br-muted);
}

.hero p,
.page-hero p {
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-content-panel {
  max-width: 680px;
}

.hero-note {
  align-items: center;
  background: linear-gradient(90deg, rgba(7, 49, 29, 0.96), var(--br-blue));
  border-radius: 8px;
  bottom: 2rem;
  color: #fff;
  display: flex;
  font-weight: 800;
  gap: 0.8rem;
  left: 60%;
  max-width: 410px;
  padding: 0.9rem 1.1rem;
  position: absolute;
  right: 8%;
}

.hero-note i {
  font-size: 1.6rem;
}

.hero-note span {
  min-width: 0;
}

.light-band {
  background:
    linear-gradient(
      135deg,
      rgba(237, 248, 241, 0.96),
      rgba(255, 255, 255, 0.92)
    ),
    radial-gradient(
      circle at 10% 60%,
      rgba(0, 130, 60, 0.12),
      transparent 34%
    );
}

.soft-blue {
  background: linear-gradient(135deg, var(--br-sky), #fff);
}

.soft-green {
  background: linear-gradient(
    135deg,
    rgba(0, 130, 60, 0.1),
    rgba(255, 255, 255, 0.96)
  );
}

.section-heading {
  margin: 0 auto 2.5rem;
  max-width: 860px;
}

.about-showcase {
  background: #fff;
  overflow: hidden;
}

.about-image-stack {
  /* min-height: 520px; */
  position: relative;
}

.about-image-main,
.about-image-small {
  background-image: url("../images/Rectangle-184-1.jpg");
  background-size: cover;
  box-shadow: var(--br-shadow);
  position: absolute;
}

.about-image-main {
  background-position: center;
  border-radius: 28px 8px 28px 8px;
  height: 690px;
  left: 0;
  top: 0;
  width: 82%;
}

.about-image-small {
  background-image: url("../images/about1.jpg");
  background-position: right center;
  border: 10px solid #fff;
  border-radius: 8px 28px 8px 28px;
  bottom: 0;
  height: 300px;
  right: 0;
  width: 46%;
  top: 330px;
}

.experience-badge {
  align-items: center;
  background: var(--br-teal);
  border: 8px solid #fff;
  border-radius: 50%;
  bottom: 18px;
  box-shadow: 0 14px 30px rgba(7, 49, 29, 0.18);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 162px;
  justify-content: center;
  left: 36px;
  position: absolute;
  text-align: center;
  width: 162px;
}

.experience-badge strong {
  align-items: center;
  background: #ffd25a;
  border-radius: 50%;
  color: var(--br-ink);
  display: flex;
  font-size: 2.25rem;
  font-weight: 900;
  height: 78px;
  justify-content: center;
  line-height: 1;
  margin: 0.35rem 0;
  width: 78px;
}

.experience-badge span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content {
  padding-left: 1rem;
}

.pill-kicker {
  border: 1px solid var(--br-border);
  border-radius: 999px;
  color: var(--br-ink);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  padding: 0.46rem 1.15rem;
  text-transform: uppercase;
}

.about-content > h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  max-width: 660px;
}

.about-content > p {
  font-size: 1.05rem;
  margin: 1.4rem 0 1.8rem;
  max-width: 700px;
}

.about-detail-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(0, 1fr) 250px;
}

.about-copy-block {
  display: grid;
  gap: 1.25rem;
}

.about-copy-block article h3,
.about-side-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.about-copy-block article p {
  margin-bottom: 0.75rem;
}

.about-side-card {
  align-self: start;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 130, 60, 0.1), transparent 36%),
    linear-gradient(135deg, #f8fffb, #fff);
  border: 1px solid var(--br-border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 49, 29, 0.08);
  padding: 2rem;
}

.side-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--br-navy), var(--br-blue));
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.55rem;
  height: 72px;
  justify-content: center;
  margin-bottom: 1.3rem;
  width: 72px;
}

.about-side-card ul {
  list-style: none;
  margin: 1rem 0 1.3rem;
  padding: 0;
}

.about-side-card li {
  color: var(--br-muted);
  margin-bottom: 0.55rem;
  padding-left: 1.55rem;
  position: relative;
}

.about-side-card li::before {
  color: var(--br-teal);
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.about-side-card a {
  color: var(--br-blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-panel,
.value-card,
.benefit-card,
.wide-panel,
.mini-panel,
.commitment-list,
.accent-panel,
.lifetime-panel {
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(7, 49, 29, 0.06);
  padding: 2rem;
}

.icon-circle,
.benefit-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--br-navy), var(--br-blue));
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 1.7rem;
  height: 72px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 72px;
}

.icon-circle.green,
.benefit-icon.teal {
  background: linear-gradient(135deg, var(--br-green), var(--br-teal));
}

.benefit-icon.violet {
  background: linear-gradient(135deg, #3a2aa0, var(--br-violet));
}

.benefit-icon.orange {
  background: linear-gradient(135deg, #bf5f00, var(--br-orange));
}

.benefit-icon.blue {
  background: linear-gradient(135deg, var(--br-navy-2), var(--br-blue-2));
}

.benefit-icon.gold {
  background: linear-gradient(135deg, #9a6400, var(--br-gold));
}

.purpose-grid,
.impact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.purpose-grid div,
.impact-grid div {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--br-border);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  min-height: 96px;
  padding: 1.15rem;
}

.purpose-grid i,
.impact-grid i,
.value-card i {
  color: var(--br-blue);
  font-size: 1.75rem;
  width: 34px;
}

.accent-panel {
  background: linear-gradient(135deg, var(--br-navy), var(--br-blue));
}

.accent-panel h2,
.accent-panel p,
.accent-panel .section-kicker {
  color: #fff;
}

.commitment-list h3 {
  margin-bottom: 1.25rem;
}

.commitment-list li,
.benefit-card li,
.wide-panel li,
.mini-panel li {
  color: var(--br-ink);
  margin-bottom: 0.55rem;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-closing {
  font-weight: 800;
  margin: 2rem auto 0;
  max-width: 760px;
  text-align: center;
}

.value-card {
  height: 100%;
}

.value-card i {
  margin-bottom: 1rem;
}

.final-cta {
  padding-top: 2rem;
}

.cta-panel {
  align-items: center;
  background: linear-gradient(135deg, var(--br-navy), var(--br-blue));
  border-radius: 8px;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.4rem;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .section-kicker {
  color: #fff;
}

.cta-panel .btn {
  color: var(--br-blue);
  min-width: 190px;
}

.contact-section {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(0, 130, 60, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #fff, var(--br-sky-2));
}

.contact-shell {
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(7, 49, 29, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.35fr);
  overflow: hidden;
  padding: 1rem;
}

.contact-info-panel {
  background:
    radial-gradient(
      circle at 80% 82%,
      rgba(255, 255, 255, 0.12) 0 13%,
      transparent 14%
    ),
    radial-gradient(
      circle at 96% 98%,
      rgba(0, 130, 60, 0.18) 0 22%,
      transparent 23%
    ),
    linear-gradient(145deg, var(--br-navy), #03180e);
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 610px;
  overflow: hidden;
  padding: 3.2rem;
  position: relative;
}

.contact-info-panel .section-kicker,
.contact-info-panel h2,
.contact-info-panel p {
  color: #fff;
}

.contact-info-panel h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-info-panel p {
  font-size: 1.25rem;
  opacity: 0.82;
}

.contact-info-list {
  display: grid;
  gap: 2.6rem;
  list-style: none;
  margin: 2.5rem 0;
  padding: 0;
}

.contact-info-list li {
  align-items: flex-start;
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 28px 1fr;
}

.contact-info-list i {
  color: #fff;
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.contact-info-list a,
.contact-info-list span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.contact-socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  width: 42px;
}

.contact-socials a:hover {
  background: #fff;
  color: var(--br-blue);
}

.contact-form {
  padding: 3.4rem 3.2rem;
}

.contact-form label,
.form-label-title {
  color: var(--br-ink);
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(7, 49, 29, 0.24);
  border-radius: 0;
  color: var(--br-ink);
  font: inherit;
  outline: 0;
  padding: 0.55rem 0 0.85rem;
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--br-blue);
}

.contact-form ::placeholder {
  color: rgba(7, 49, 29, 0.48);
}

.subject-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 0.4rem;
}

.subject-options label {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 0.6rem;
  margin: 0;
}

.subject-options input {
  accent-color: var(--br-blue);
  height: 18px;
  width: 18px;
}

.subject-options span {
  color: var(--br-ink);
  font-weight: 700;
}

.demo-captcha {
  background: var(--br-sky-2);
  border: 1px solid var(--br-border);
  border-radius: 8px;
  padding: 1.1rem;
}

.demo-captcha p {
  color: var(--br-ink);
  margin: 0 0 1rem;
}

.captcha-actions {
  align-items: flex-end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-form .captcha-actions input[type="text"] {
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.captcha-message {
  color: var(--br-muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 0.8rem;
}

.demo-captcha.is-verified {
  border-color: rgba(0, 130, 60, 0.45);
}

.demo-captcha.is-verified .captcha-message {
  color: var(--br-blue);
}

.demo-captcha.has-error {
  border-color: #c83f31;
}

.demo-captcha.has-error .captcha-message {
  color: #c83f31;
}

.consent-check {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  margin: 0;
}

.consent-check input {
  accent-color: var(--br-blue);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 0.2rem;
  width: 18px;
}

.consent-check span {
  color: var(--br-ink);
  font-weight: 800;
}

.form-submit-row .btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.8rem;
}

.form-submit-row .btn {
  min-width: 240px;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.page-hero {
  background:
    radial-gradient(circle at 0 95%, rgba(0, 130, 60, 0.16), transparent 28%),
    radial-gradient(
      circle at 100% 30%,
      rgba(0, 130, 60, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #fff, var(--br-sky));
  text-align: center;
}

.page-hero .container {
  max-width: 900px;
}

.benefit-card-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.benefit-card h3 {
  min-height: 58px;
}

.benefit-card h4 {
  color: var(--br-blue);
  margin-top: 0.65rem;
}

.benefit-card p {
  color: var(--br-ink);
}

.benefit-card ul,
.wide-panel ul,
.mini-panel ul,
.commitment-list ul {
  padding-left: 1.15rem;
}

.two-column-list {
  columns: 2;
  column-gap: 2rem;
}

.community-panel {
  background: linear-gradient(135deg, rgba(0, 130, 60, 0.1), #fff);
}

.lifetime-panel {
  background: linear-gradient(135deg, var(--br-sky), #fff);
}

.lifetime-intro {
  align-items: center;
  display: flex;
  gap: 1.4rem;
  margin-bottom: 1.5rem;
}

.mini-panel {
  background: rgba(255, 255, 255, 0.86);
  height: 100%;
}

.site-footer {
  background: linear-gradient(135deg, var(--br-navy), #03180e);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}

.footer-logo img {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  padding: 0.35rem;
  width: 210px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 1rem;
  max-width: 270px;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #fff;
}

.contact-list i {
  margin-right: 0.55rem;
  width: 18px;
}

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-links span {
  color: rgba(255, 255, 255, 0.86);
}

.social-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 1199.98px) {
  .navbar-brand img {
    width: 190px;
  }

  .main-navbar {
    padding: 0.75rem 0;
  }

  .main-navbar .nav-link {
    margin: 0;
    padding: 0.78rem 0;
  }

  .main-navbar .nav-link::after {
    bottom: 0.45rem;
    width: 80px;
  }
}

@media (max-width: 991.98px) {
  .section,
  .hero,
  .page-hero {
    padding: 4rem 0;
  }

  .benefit-card-grid,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero {
    background: url("../images/home-hero.png") center right / cover no-repeat;
    min-height: auto;
  }

  .hero-note {
    left: 1.5rem;
    right: 1.5rem;
  }

  .about-content {
    padding-left: 0;
  }

  .about-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-side-card {
    max-width: 420px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  /* .container {
    max-width: 330px;
  } */

  h1 {
    font-size: 2rem;
    line-height: 1.22;
  }

  h2 {
    font-size: 1.65rem;
  }

  .navbar-brand img {
    width: 165px;
  }

  .main-navbar .container {
    max-width: 330px;
    min-width: 0;
  }

  /* .home-hero h1,
  .home-hero p,
  .page-hero h1,
  .page-hero p {
    max-width: 300px;
  } */

  /* .home-hero .row,
  .home-hero [class*="col-"] {
    max-width: 100%;
    min-width: 0;
  } */

  .home-hero {
    background: url("../images/home-hero.png") center left / cover no-repeat;
    padding-bottom: 8.5rem;
  }

  .about-image-stack {
    min-height: 410px;
  }

  .about-image-main {
    border-radius: 18px 8px 18px 8px;
    height: 345px;
    width: 75%;
  }

  .about-image-small {
    border-width: 7px;
    height: 180px;
    width: 55%;
    top: 230px;
  }

  .experience-badge {
    bottom: 8px;
    height: 126px;
    left: 12px;
    width: 126px;
  }

  .experience-badge strong {
    font-size: 1.55rem;
    height: 58px;
    width: 58px;
  }

  .experience-badge span {
    font-size: 0.6rem;
  }

  .about-content > h2 {
    font-size: 2rem;
  }

  .about-side-card {
    padding: 1.4rem;
  }

  .contact-shell {
    padding: 0.65rem;
  }

  .contact-info-panel,
  .contact-form {
    padding: 1.5rem;
  }

  .contact-info-list {
    gap: 1.5rem;
  }

  .contact-info-panel p {
    font-size: 1rem;
  }

  .subject-options {
    flex-direction: column;
    gap: 0.8rem;
  }

  .form-submit-row {
    justify-content: stretch;
  }

  .form-submit-row .btn {
    min-width: 0;
    width: 100%;
  }

  .captcha-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    bottom: 2.75rem;
    flex-direction: row;
    font-size: 0.86rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .purpose-grid,
  .impact-grid,
  .benefit-card-grid {
    grid-template-columns: 1fr;
  }

  .two-column-list {
    columns: 1;
  }

  .lifetime-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-panel,
  .value-card,
  .benefit-card,
  .wide-panel,
  .mini-panel,
  .commitment-list,
  .accent-panel,
  .lifetime-panel,
  .cta-panel {
    padding: 1.4rem;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 0.9rem;
  }
}

.about-content-line {
  position: absolute;
  background: linear-gradient(135deg, var(--br-navy), var(--br-blue));
  top: 15px;
  right: 55px;
  width: 2%;
  height: 186px;
  border-radius: 10px 10px 10px 10px;
}
