
.container {
  padding-left: 30px;
  padding-right: 30px;
}

/* Text Blocks  */
.text-big {
  font-size: 20px;
}

.text-mid {
  font-size: 20px;
}

.text-mid,
.text-big {
  padding-top: 40px;
  padding-bottom: 40px;
}

.text-mid b,
.text-mid strong,
.text-big b,
.text-big strong {
  font-weight: 600;
}

.text-mid h2,
.text-big h2,
.purple-quote .h2-big {
  font-size: 24px;
}

@media (min-width: 768px) {
  .text-big {
	font-size: 28px;
  }

  .text-mid,
  .text-big {
  	padding-top: 90px;
  	padding-bottom: 90px;
  }

  .text-mid h2,
  .text-big h2,
  .purple-quote .h2-big {
    font-size: 40px;
  }
}

/* Images */
.image-rounded img,
.image-group img {
  border-radius: 20px;
}


/* Color Blocks */

.blue-block,
.purple-quote {
  padding-top: 40px;
  padding-bottom: 40px;
}

.blue-block {
  background-color: #1C2B52;
  color: #fff;
}

.purple-quote {
  background-color: #3A2E6B;
  color: #fff;
}

.blue-block h2,
.purple-quote h2 {
  font-size: 24px;
  margin-bottom: 28px;
}

.purple-quote blockquote {
  font-size: 24px;
  line-height: 1.2;
}

.purple-quote small {
  font-size: 16px;
  font-weight: 600;
}

.blue-block hr,
.purple-quote hr {
  border-top: 1px solid white;
  opacity: 1;
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
	.blue-block,
	.purple-quote {
	  padding-top: 90px;
	  padding-bottom: 90px;
	}

	.purple-quote blockquote {
  		font-size: 40px;
	}

	.blue-block h2 {
	  font-size: 40px;
	  margin-bottom: 40px;
	}

	.blue-block hr,
	.purple-quote hr {
		margin-top: 40px;
		margin-bottom: 40px;
	}
}



.hero-fullwidth {
  color: #fff;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-fullwidth-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1/1;
}

.hero-fullwidth-eyebrow {
  padding-top: 20px;
  font-size: 16px;
  display: flex;
}

.hero-fullwidth-eyebrow hr {
    flex: 1 0 auto;
    border-top: 1px solid white;
    opacity: 1;
    margin-left: 10px;
    height: 0;
}

.hero-fullwidth-title {
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
}

@media (min-width: 768px) {
	.hero-fullwidth-content {
		aspect-ratio: 1120/650;
	}

	.hero-fullwidth-eyebrow {
	  padding-top: 90px;
	  font-size: 22px;
	}

	.hero-fullwidth-title {
		 padding-bottom: 90px;
		 font-size: 50px;
	}
}

/* Side by Side Boxes -- Callouts */

.callout {
  background-color: #ececec;
  border-radius: 20px;
  padding: 40px;
}

.callout.bg-dark-blue {
  background-color: #1C2B52;
  padding: 20px;
  border-radius: 20px;
  color: #fff;
}

.callout.bg-dark-blue a,
.callout.bg-dark-blue a:hover,
.callout.bg-dark-blue a:focus {
  color: #fff;
  text-decoration: underline;
}

.callout h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.callout-col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .callout-col .callout {
    margin-bottom: 20px;
  }
  .callout-col:last-child .callout {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .callout-col .callout {
    height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .callout p {
    font-size: 20px;
  }
}

.big-number {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
}

.big-number-label {
  font-weight: 600;
}

/* Accordion */

.faq-acc {
  margin-bottom: 40px;
}

.faq-acc__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0;
    cursor: pointer;

    padding: 22px 26px;
    border-radius: 28px;

    background: #162a57; /* active navy */
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: left;

    transition: background-color 200ms ease, color 200ms ease;
  }

  .faq-acc__title { 
    line-height: 1.15; 
    padding-right: 14px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
  }

  .faq-acc__icon {
    display: inline-flex;
    transition: transform 200ms ease;
    flex: 0 0 auto;
    transform: rotate(180deg); /* DEFAULT open = chevron up */
  }

  /* Panel DEFAULT = OPEN */
  .faq-acc__panel {
    overflow: hidden;
    max-height: 9999px; /* open by default */
    opacity: 1;
    transition: max-height 280ms ease, opacity 200ms ease;
  }

  .faq-acc__panelInner {
    margin-top: 14px;
    padding: 26px 28px;
    border: 3px solid #111;
    border-radius: 28px;
    background: #fff;
    color: #2b2f36;
    font-size: 20px;
    line-height: 1.55;
  }

  /* COLLAPSED state (JS applies this class only when NOT draggable) */
  .faq-acc.is-collapsed .faq-acc__btn {
    background: #e9ecef;
    color: #1f2937;
  }

  .faq-acc.is-collapsed .faq-acc__icon {
    transform: rotate(0deg); /* collapsed = chevron down */
  }

  .faq-acc.is-collapsed .faq-acc__panel {
    max-height: 0;
    opacity: 0;
  }

  @media (max-width: 900px) {
    .faq-acc__btn { font-size: 24px; padding: 18px 18px; }
    .faq-acc__panelInner { font-size: 18px; padding: 18px; }
  }