/* =========================================================
   DR GPV SUBBAIAH - ABOUT PAGE
   LOGO COLORS: NAVY + TEAL
========================================================= */

:root {
  --about-navy: #0b253d;
  --about-navy-2: #12354f;

  --about-teal: #18b5ae;
  --about-teal-dark: #0f8f8b;
  --about-teal-soft: #eaf9f8;

  --about-white: #ffffff;

  --about-text: #243b4d;
  --about-muted: #657b8a;

  --about-bg: #f3f7f9;
  --about-border: #dfe9ed;

  --about-shadow:
    0 16px 40px rgba(11, 37, 61, 0.09);
}


/* =========================================================
   BREADCRUMB / HERO
========================================================= */

.about-page-hero {
  padding:
    52px 0 56px;

  color: #ffffff;

  text-align: center;

  background:
    linear-gradient(
      115deg,
      var(--about-navy),
      #105666,
      var(--about-teal-dark)
    );
}


.about-page-hero-inner {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}


.about-breadcrumb {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 9px;

  margin-bottom: 15px;

  font-size: 14px;

  font-weight: 700;
}


.about-breadcrumb a {
  color:
    rgba(255, 255, 255, 0.82);
}


.about-breadcrumb a:hover {
  color:
    #ffffff;
}


.about-breadcrumb i {
  color:
    rgba(255, 255, 255, 0.5);

  font-size: 9px;
}


.about-breadcrumb span {
  color:
    #84e7e1;
}


.about-page-hero h1 {
  margin:
    0 0 12px;

  color: #ffffff;

  font-size:
    clamp(
      42px,
      5vw,
      58px
    );

  line-height: 1.1;

  font-weight: 800;

  letter-spacing:
    -1px;
}


.about-page-hero p {
  width:
    min(
      760px,
      100%
    );

  margin: 0;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   SECTIONS
========================================================= */

.about-section {
  padding:
    88px 0;

  background:
    #ffffff;
}


.about-soft-section {
  background:
    var(--about-bg);
}


.about-split {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 65px;

  align-items: center;
}


.about-split-large {
  grid-template-columns:
    0.9fr 1.1fr;
}


.about-split-reverse {
  grid-template-columns:
    0.9fr 1.1fr;
}


/* =========================================================
   EYEBROW
========================================================= */

.about-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 14px;

  color:
    var(--about-teal-dark);

  font-size: 13px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: 1.15px;
}


.about-eyebrow i {
  color:
    var(--about-teal);
}


/* =========================================================
   GENERAL CONTENT
========================================================= */

.about-content h2,
.about-centered-heading h2 {
  margin:
    0 0 23px;

  color:
    var(--about-navy);

  font-size:
    clamp(
      34px,
      4vw,
      48px
    );

  line-height: 1.2;

  letter-spacing:
    -1px;

  font-weight: 800;
}


.about-content h2 span,
.about-centered-heading h2 span {
  color:
    var(--about-teal);
}


.about-content p {
  margin:
    0 0 17px;

  color:
    var(--about-muted);

  font-size: 15px;

  line-height: 1.95;
}


.about-lead {
  color:
    var(--about-text) !important;

  font-size: 16px !important;

  font-weight: 500;
}


.about-highlight-text {
  display: inline-block;

  padding:
    10px 15px;

  color:
    var(--about-navy) !important;

  background:
    var(--about-teal-soft);

  border-left:
    3px solid
    var(--about-teal);

  border-radius: 7px;

  font-weight: 700;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.about-main-image {
  position: relative;

  min-height: 560px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #eaf7f7,
      #d9efef
    );

  border-radius: 24px;

  box-shadow:
    var(--about-shadow);
}


.about-main-image img {
  width: 100%;

  height: 100%;

  position: absolute;

  inset: 0;

  object-fit: cover;

  object-position:
    center top;
}


.about-experience-card {
  position: absolute;

  right: 22px;

  bottom: 22px;

  z-index: 3;

  min-width: 170px;

  padding:
    23px 24px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--about-navy),
      var(--about-teal-dark)
    );

  border:
    4px solid #ffffff;

  border-radius: 18px;

  box-shadow:
    0 15px 35px
    rgba(11, 37, 61, 0.2);
}


.about-experience-card strong {
  display: block;

  margin-bottom: 5px;

  color: #ffffff;

  font-size: 42px;

  line-height: 1;

  font-weight: 800;
}


.about-experience-card span {
  font-size: 13px;

  line-height: 1.55;

  font-weight: 700;
}


/* =========================================================
   SIDE IMAGES
========================================================= */

.about-side-image {
  height: 480px;

  overflow: hidden;

  background:
    #e9f1f4;

  border-radius: 22px;

  box-shadow:
    var(--about-shadow);
}


.about-side-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 13px;

  margin-top: 30px;
}


.about-stat {
  padding:
    18px 14px;

  background:
    #ffffff;

  border:
    1px solid
    var(--about-border);

  border-radius: 13px;

  text-align: center;

  box-shadow:
    0 6px 20px
    rgba(11, 37, 61, 0.05);
}


.about-stat strong {
  display: block;

  margin-bottom: 5px;

  color:
    var(--about-teal-dark);

  font-size: 22px;

  font-weight: 800;
}


.about-stat span {
  color:
    var(--about-muted);

  font-size: 11px;

  line-height: 1.45;

  font-weight: 700;
}


/* =========================================================
   EDUCATION
========================================================= */

.about-info-block {
  margin-top: 22px;
}


.about-info-block h3,
.about-subheading {
  margin:
    0 0 12px;

  color:
    var(--about-navy);

  font-size: 19px;

  font-weight: 800;
}


.about-check-list {
  margin: 0;

  padding: 0;

  display: grid;

  gap: 12px;

  list-style: none;
}


.about-check-list li {
  display: flex;

  align-items: flex-start;

  gap: 11px;

  color:
    var(--about-muted);

  font-size: 14px;

  line-height: 1.75;
}


.about-check-list li i {
  width: 25px;

  height: 25px;

  margin-top: 1px;

  display: grid;

  place-items: center;

  flex: none;

  color: #ffffff;

  background:
    var(--about-teal);

  border-radius: 50%;

  font-size: 9px;
}


.about-check-list strong {
  color:
    var(--about-navy);
}


/* =========================================================
   FULL WIDTH CONTENT
========================================================= */

.about-full-content {
  margin-top: 52px;

  padding-top: 45px;

  border-top:
    1px solid
    var(--about-border);
}


.about-section-heading-inline {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 26px;
}


.about-mini-icon {
  width: 50px;

  height: 50px;

  display: grid;

  place-items: center;

  flex: none;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--about-teal),
      var(--about-teal-dark)
    );

  border-radius: 14px;

  font-size: 18px;
}


.about-section-heading-inline h3 {
  margin:
    0 0 4px;

  color:
    var(--about-navy);

  font-size: 23px;

  font-weight: 800;
}


.about-section-heading-inline p {
  margin: 0;

  color:
    var(--about-muted);

  font-size: 13px;
}


/* =========================================================
   ACHIEVEMENTS
========================================================= */

.about-achievement-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 19px;
}


.about-feature-card {
  padding:
    24px;

  background:
    #ffffff;

  border:
    1px solid
    var(--about-border);

  border-radius: 16px;

  box-shadow:
    0 8px 24px
    rgba(11, 37, 61, 0.05);
}


.about-feature-card > i {
  width: 43px;

  height: 43px;

  margin-bottom: 15px;

  display: grid;

  place-items: center;

  color:
    var(--about-teal-dark);

  background:
    var(--about-teal-soft);

  border-radius: 12px;

  font-size: 18px;
}


.about-feature-card p {
  margin: 0;

  color:
    var(--about-muted);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   DIFFERENT FROM OTHERS
========================================================= */

.about-reason-list {
  display: grid;

  gap: 14px;

  margin:
    22px 0;
}


.about-reason {
  padding:
    14px 16px;

  display: grid;

  grid-template-columns:
    42px 1fr;

  gap: 13px;

  align-items: flex-start;

  border:
    1px solid
    var(--about-border);

  border-radius: 12px;

  background:
    #ffffff;
}


.about-reason > span {
  width: 42px;

  height: 42px;

  display: grid;

  place-items: center;

  color: #ffffff;

  background:
    var(--about-teal-dark);

  border-radius: 10px;

  font-size: 12px;

  font-weight: 800;
}


.about-reason p {
  margin: 0 !important;

  font-size: 13px !important;

  line-height: 1.7 !important;
}


.about-reason strong {
  color:
    var(--about-navy);
}


/* =========================================================
   CLINICAL SUMMARY
========================================================= */

.about-expertise-summary {
  display: grid;

  gap: 10px;

  margin-top: 24px;
}


.about-expertise-summary span {
  display: flex;

  align-items: center;

  gap: 10px;

  color:
    var(--about-text);

  font-size: 14px;

  font-weight: 700;
}


.about-expertise-summary i {
  width: 26px;

  height: 26px;

  display: grid;

  place-items: center;

  color: #ffffff;

  background:
    var(--about-teal);

  border-radius: 50%;

  font-size: 9px;
}


/* =========================================================
   CLINICAL GRID
========================================================= */

.clinical-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 20px;
}


.clinical-card {
  position: relative;

  padding:
    26px 26px 25px;

  overflow: hidden;

  background:
    #ffffff;

  border:
    1px solid
    var(--about-border);

  border-radius: 17px;

  box-shadow:
    0 7px 22px
    rgba(11, 37, 61, 0.05);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.clinical-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(24, 181, 174, 0.4);

  box-shadow:
    0 15px 30px
    rgba(11, 37, 61, 0.09);
}


.clinical-number {
  position: absolute;

  right: 18px;

  top: 13px;

  color:
    rgba(24, 181, 174, 0.1);

  font-size: 40px;

  line-height: 1;

  font-weight: 800;
}


.clinical-card h3 {
  position: relative;

  z-index: 1;

  width: 82%;

  margin:
    0 0 15px;

  color:
    var(--about-navy);

  font-size: 18px;

  line-height: 1.4;

  font-weight: 800;
}


.clinical-card ul {
  margin: 0;

  padding-left: 19px;
}


.clinical-card li {
  margin-bottom: 8px;

  color:
    var(--about-muted);

  font-size: 13px;

  line-height: 1.7;
}


.clinical-card strong {
  color:
    var(--about-text);
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.choose-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 20px;
}


.choose-card {
  padding:
    26px 24px;

  background:
    #ffffff;

  border:
    1px solid
    var(--about-border);

  border-radius: 17px;

  box-shadow:
    0 8px 25px
    rgba(11, 37, 61, 0.05);
}


.choose-icon {
  width: 48px;

  height: 48px;

  margin-bottom: 17px;

  display: grid;

  place-items: center;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--about-teal),
      var(--about-teal-dark)
    );

  border-radius: 13px;

  font-size: 18px;
}


.choose-card h3 {
  margin:
    0 0 13px;

  color:
    var(--about-navy);

  font-size: 17px;

  line-height: 1.4;

  font-weight: 800;
}


.choose-card ul {
  margin: 0;

  padding-left: 18px;
}


.choose-card li {
  margin-bottom: 8px;

  color:
    var(--about-muted);

  font-size: 13px;

  line-height: 1.7;
}


.about-closing-note {
  margin-top: 25px;

  padding:
    19px 22px;

  display: flex;

  align-items: flex-start;

  gap: 14px;

  color:
    var(--about-text);

  background:
    var(--about-teal-soft);

  border-left:
    4px solid
    var(--about-teal);

  border-radius: 12px;
}


.about-closing-note i {
  margin-top: 3px;

  color:
    var(--about-teal-dark);

  font-size: 19px;
}


.about-closing-note p {
  margin: 0;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   FAQ
========================================================= */

.about-faq-section {
  background:
    var(--about-bg);
}


.about-centered-heading {
  max-width: 720px;

  margin:
    0 auto 38px;

  text-align: center;
}


.about-faq-list {
  width:
    min(
      950px,
      100%
    );

  margin:
    0 auto;

  display: grid;

  gap: 13px;
}


.about-faq-item {
  overflow: hidden;

  background:
    #ffffff;

  border:
    1px solid
    #cfdee4;

  border-radius: 15px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.about-faq-item.is-open {
  border-color:
    var(--about-teal);

  box-shadow:
    0 8px 25px
    rgba(24, 181, 174, 0.08);
}


.about-faq-question {
  width: 100%;

  min-height: 62px;

  padding:
    12px 18px;

  display: flex;

  align-items: center;

  gap: 14px;

  border: 0;

  color:
    var(--about-navy);

  background:
    #ffffff;

  text-align: left;

  font-family: inherit;

  cursor: pointer;
}


.about-faq-question strong {
  font-size: 14px;

  line-height: 1.5;

  font-weight: 800;
}


.about-faq-icon {
  width: 34px;

  height: 34px;

  flex: none;

  display: grid;

  place-items: center;

  color: #ffffff;

  background:
    var(--about-teal-dark);

  border-radius: 50%;

  font-size: 12px;
}


.about-faq-item.is-open
.about-faq-icon {
  background:
    var(--about-teal);
}


.about-faq-answer {
  display: none;

  padding:
    0 22px
    22px 67px;

  color:
    var(--about-muted);

  font-size: 14px;

  line-height: 1.8;
}


.about-faq-item.is-open
.about-faq-answer {
  display: block;
}


.about-faq-answer p {
  margin:
    0 0 12px;
}


.about-faq-answer ul {
  margin:
    0 0 13px;

  padding-left: 19px;
}


.about-faq-answer li {
  margin-bottom: 6px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .about-section {
    padding:
      70px 0;
  }


  .about-split,
  .about-split-large,
  .about-split-reverse {
    grid-template-columns:
      1fr;

    gap: 38px;
  }


  .about-main-image {
    width: 100%;

    min-height: 500px;
  }


  .about-side-image {
    height: 430px;
  }


  .about-achievement-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .clinical-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .choose-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .about-page-hero {
    padding:
      40px 0 43px;
  }


  .about-breadcrumb {
    font-size: 12px;
  }


  .about-page-hero h1 {
    font-size: 36px;
  }


  .about-page-hero p {
    font-size: 13px;

    line-height: 1.7;
  }


  .about-section {
    padding:
      58px 0;
  }


  .about-content h2,
  .about-centered-heading h2 {
    font-size: 31px;

    line-height: 1.25;
  }


  .about-content p {
    font-size: 14px;
  }


  .about-main-image {
    min-height: 390px;

    border-radius: 17px;
  }


  .about-experience-card {
    right: 13px;

    bottom: 13px;

    min-width: 145px;

    padding:
      18px;
  }


  .about-experience-card strong {
    font-size: 34px;
  }


  .about-side-image {
    height: 320px;

    border-radius: 16px;
  }


  .about-stats {
    grid-template-columns:
      1fr;
  }


  .about-stat {
    text-align: left;
  }


  .about-full-content {
    margin-top: 38px;

    padding-top: 34px;
  }


  .about-achievement-grid,
  .clinical-grid,
  .choose-grid {
    grid-template-columns:
      1fr;
  }


  .about-section-heading-inline {
    align-items: flex-start;
  }


  .about-section-heading-inline h3 {
    font-size: 20px;
  }


  .clinical-card,
  .choose-card {
    padding:
      22px 19px;
  }


  .about-faq-question {
    padding:
      11px 13px;

    gap: 11px;
  }


  .about-faq-question strong {
    font-size: 12px;
  }


  .about-faq-icon {
    width: 31px;

    height: 31px;
  }


  .about-faq-answer {
    padding:
      0 15px
      17px 15px;

    font-size: 13px;
  }

}

/* =========================================================
   ABOUT PAGE - FINAL FONT SIZE INCREASE
   SAME WEBSITE MODERATE TYPOGRAPHY
   ADD THIS AT THE VERY BOTTOM OF about.css
========================================================= */


/* =========================================================
   DESKTOP
========================================================= */

/* HERO BREADCRUMB */

.about-breadcrumb {
  font-size: 15px;
}


/* HERO TITLE */

.about-page-hero h1 {
  font-size: clamp(44px, 5vw, 60px);
}


/* HERO DESCRIPTION */

.about-page-hero p {
  font-size: 17px;
  line-height: 1.8;
}


/* SMALL SECTION LABELS */

.about-eyebrow {
  font-size: 14px;
  line-height: 1.2;
}


/* MAIN SECTION HEADINGS */

.about-content h2,
.about-centered-heading h2 {
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.2;
}


/* =========================================================
   MAIN ABOUT CONTENT
========================================================= */

.about-content p {
  font-size: 17px;
  line-height: 1.9;
}


/* FIRST IMPORTANT PARAGRAPH */

.about-lead {
  font-size: 18px !important;
  line-height: 1.9 !important;
}


/* HIGHLIGHT TEXT */

.about-highlight-text {
  font-size: 16px !important;
  line-height: 1.7 !important;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.about-experience-card strong {
  font-size: 44px;
}


.about-experience-card span {
  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   STATS
========================================================= */

.about-stat strong {
  font-size: 25px;
}


.about-stat span {
  font-size: 13px;
  line-height: 1.5;
}


/* =========================================================
   EDUCATION
========================================================= */

.about-info-block h3,
.about-subheading {
  font-size: 22px;
  line-height: 1.4;
}


.about-check-list li {
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   EXPERIENCE & ACHIEVEMENTS
========================================================= */

.about-section-heading-inline h3 {
  font-size: 26px;
  line-height: 1.35;
}


.about-section-heading-inline p {
  font-size: 15px;
  line-height: 1.7;
}


.about-feature-card p {
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   DIFFERENT FROM OTHERS
========================================================= */

.about-reason p {
  font-size: 15px !important;
  line-height: 1.8 !important;
}


.about-reason > span {
  font-size: 13px;
}


/* =========================================================
   CLINICAL EXPERTISE SUMMARY
========================================================= */

.about-expertise-summary span {
  font-size: 16px;
  line-height: 1.6;
}


/* =========================================================
   CLINICAL EXPERTISE CARDS
========================================================= */

.clinical-card h3 {
  font-size: 21px;
  line-height: 1.4;
}


.clinical-card li {
  font-size: 15px;
  line-height: 1.8;
}


.clinical-card strong {
  font-size: inherit;
}


/* =========================================================
   WHY CHOOSE CARDS
========================================================= */

.choose-card h3 {
  font-size: 20px;
  line-height: 1.45;
}


.choose-card li {
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================================
   CLOSING NOTE
========================================================= */

.about-closing-note p {
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   FAQ
========================================================= */

.about-faq-question strong {
  font-size: 16px;
  line-height: 1.55;
}


.about-faq-answer {
  font-size: 15px;
  line-height: 1.85;
}


.about-faq-answer p,
.about-faq-answer li {
  font-size: 15px;
  line-height: 1.85;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .about-breadcrumb {
    font-size: 14px;
  }


  .about-page-hero h1 {
    font-size: 46px;
  }


  .about-page-hero p {
    font-size: 16px;
  }


  .about-eyebrow {
    font-size: 13px;
  }


  .about-content h2,
  .about-centered-heading h2 {
    font-size: 38px;
  }


  .about-content p {
    font-size: 16px;
    line-height: 1.85;
  }


  .about-lead {
    font-size: 17px !important;
  }


  .about-highlight-text {
    font-size: 15px !important;
  }


  .about-info-block h3,
  .about-subheading {
    font-size: 21px;
  }


  .about-check-list li {
    font-size: 15px;
  }


  .about-section-heading-inline h3 {
    font-size: 24px;
  }


  .about-section-heading-inline p {
    font-size: 14px;
  }


  .about-feature-card p {
    font-size: 15px;
  }


  .about-reason p {
    font-size: 15px !important;
  }


  .about-expertise-summary span {
    font-size: 15px;
  }


  .clinical-card h3 {
    font-size: 20px;
  }


  .clinical-card li {
    font-size: 15px;
  }


  .choose-card h3 {
    font-size: 19px;
  }


  .choose-card li {
    font-size: 15px;
  }


  .about-closing-note p {
    font-size: 15px;
  }


  .about-faq-question strong {
    font-size: 15px;
  }


  .about-faq-answer,
  .about-faq-answer p,
  .about-faq-answer li {
    font-size: 15px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .about-breadcrumb {
    font-size: 13px;
  }


  .about-page-hero h1 {
    font-size: 38px;
  }


  .about-page-hero p {
    font-size: 15px;
    line-height: 1.75;
  }


  .about-eyebrow {
    font-size: 12px;
  }


  .about-content h2,
  .about-centered-heading h2 {
    font-size: 32px;
    line-height: 1.25;
  }


  .about-content p {
    font-size: 15px;
    line-height: 1.85;
  }


  .about-lead {
    font-size: 16px !important;
    line-height: 1.85 !important;
  }


  .about-highlight-text {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }


  .about-experience-card strong {
    font-size: 36px;
  }


  .about-experience-card span {
    font-size: 12px;
  }


  .about-stat strong {
    font-size: 23px;
  }


  .about-stat span {
    font-size: 13px;
  }


  .about-info-block h3,
  .about-subheading {
    font-size: 20px;
  }


  .about-check-list li {
    font-size: 15px;
    line-height: 1.75;
  }


  .about-section-heading-inline h3 {
    font-size: 21px;
  }


  .about-section-heading-inline p {
    font-size: 14px;
  }


  .about-feature-card p {
    font-size: 15px;
    line-height: 1.75;
  }


  .about-reason p {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }


  .about-expertise-summary span {
    font-size: 15px;
  }


  .clinical-card h3 {
    font-size: 19px;
  }


  .clinical-card li {
    font-size: 14px;
    line-height: 1.75;
  }


  .choose-card h3 {
    font-size: 18px;
  }


  .choose-card li {
    font-size: 14px;
    line-height: 1.75;
  }


  .about-closing-note p {
    font-size: 14px;
    line-height: 1.75;
  }


  .about-faq-question strong {
    font-size: 14px;
    line-height: 1.5;
  }


  .about-faq-answer,
  .about-faq-answer p,
  .about-faq-answer li {
    font-size: 14px;
    line-height: 1.8;
  }

}