:root {
  --white-color: #ffffff; /* White */
  --off-white-color: #eeeeee; /* Gray */ /* ALT #f9fcfd; Blue-White */
  --light-color: #d9f0ff; /* Alice Blue */
  --brand-color: #1477b4; /* Honolulu Blue */
  --brand-color-gradient-dark: #0056b3; /*Sapphire*/
  --brand-color-gradient-mid: #0a5c8f;
  --brand-color-gradient-light: #4f8db5; /* Air Force Blue */
  --dark-color: #082f47; /* Prussian Blue */
  --accent-color: #96897b; /* Beaver */
  --valid-color: #00856f; /* NEW GREEN */
  --title-font: "EB Garamond", serif;
  --paragraph-font: "Open Sans", Arial, sans-serif;
  --button-font: "Open Sans", sans-serif; /*To easily adjust buttons and navs with consistency*/
  --button-font-size: 18px; /*To easily adjust buttons and navs with consistency*/
  --alert-color: #b85238;
  --dark-grey-color: #3c4856;
  --medium-grey-color:#a0acbd;
  --color-gradient-deep-blues: linear-gradient(270deg, var(--dark-color) 0%, var(--brand-color-gradient-mid) 100%);
  --card-bg: #f1f3f5;
  --secondary-button-bg: var(--off-white-color);
  --secondary-button-hover-bg: #e2e2e2;

  --title-font: "EB Garamond", serif; /* existing: heading font */
  --paragraph-font: "Open Sans", Arial, sans-serif; /* existing: paragraph font */
  --button-font: "Open Sans", sans-serif; /* existing: button font */

  --text-muted: #6c757d;

  --font-size-h1: 63px; /* new: primary page heading size */
  --font-size-h2: 55px; /* new: section heading size */
  --font-size-h3: 24px; /* new: secondary heading/card title size */
  --font-size-body: 18px; /* new: default paragraph size */
  --font-size-small: 14px; /* new: small/supporting text size */
  --font-size-button: 18px; /* new: button text size */

  --line-height-heading: 1.2; /* new: shared heading line height */
  --line-height-body: 1.6; /* new: shared body line height */

  --radius-sm: 8px; /* new: small radius for buttons/inputs */
  --radius-md: 10px; /* new: standard radius for cards/images */
  --radius-lg: 12px; /* new: larger radius if needed later */

  --space-1: 8px; /* new: small spacing unit */
  --space-2: 16px; /* new: standard tight spacing */
  --space-3: 24px; /* new: standard component spacing */
  --space-4: 32px; /* new: medium spacing */
  --space-5: 48px; /* new: large spacing */
  --space-6: 64px; /* new: section spacing helper */

  --button-padding-y: 10px; /* new: button vertical padding */
  --button-padding-x: 20px; /* new: button horizontal padding */
}

/* =========================================================
   GLOBAL TYPOGRAPHY
   Purpose:
   - Define the default font families, sizes, and line heights
   - Keep all core heading and paragraph rules in one place
   ========================================================= */

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--paragraph-font);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--dark-grey-color);
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: var(--title-font);
  line-height: var(--line-height-heading);
  font-weight: 500;
  margin-top: 0;
}

h1 {
  font-size: var(--font-size-h1);
  text-align: left;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 55px;
}

h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 0.75rem;
}

p,
li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

/* =========================================================
   SECTION TEXT COLOR LOGIC
   Purpose:
   - Make text inherit the correct color from light or dark backgrounds
   - Keep nested cards working properly by using inheritance
   ========================================================= */

.bg-white,
.bg-gray {
  color: var(--dark-color);
}

.bg-blue,
.bg-blue-gradient {
  color: var(--white-color);
}

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white p,
.bg-white li,
.bg-white a:not(.cta-button):not(.button-secondary),
.bg-gray h1,
.bg-gray h2,
.bg-gray h3,
.bg-gray p,
.bg-gray li,
.bg-gray a:not(.cta-button):not(.button-secondary),
.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue p,
.bg-blue li,
.bg-blue a:not(.cta-button):not(.button-secondary),
.bg-blue-gradient h1,
.bg-blue-gradient h2,
.bg-blue-gradient h3,
.bg-blue-gradient p,
.bg-blue-gradient li,
.bg-blue-gradient a:not(.cta-button):not(.button-secondary) {
  color: inherit;
}

/* =========================================================
   LIGHT CARD HEADING OVERRIDES
   Purpose:
   - Ensure headings inside light cards stay dark,
     even when those cards sit inside dark sections
   - Use stronger selectors than the section background rules
   ========================================================= */

.bg-white .card h2,
.bg-white .card h3,
.bg-gray .card h2,
.bg-gray .card h3,
.bg-blue .card h2,
.bg-blue .card h3,
.bg-blue-gradient .card h2,
.bg-blue-gradient .card h3,
.contact-form-container h2,
.contact-form-container h3 {
  color: var(--dark-color);
}

/* =========================================================
   DARK CARD TEXT OVERRIDES
   Purpose:
   - Ensure text inside dark cards stays white,
     even when those cards sit inside light sections
   - Use stronger selectors than the section background rules
   ========================================================= */

.bg-white .bg-blue h1,
.bg-white .bg-blue h2,
.bg-white .bg-blue h3,
.bg-white .bg-blue p,
.bg-white .bg-blue li,
.bg-white .bg-blue a,
.bg-white .bg-blue-gradient h1,
.bg-white .bg-blue-gradient h2,
.bg-white .bg-blue-gradient h3,
.bg-white .bg-blue-gradient p,
.bg-white .bg-blue-gradient li,
.bg-white .bg-blue-gradient a,
.bg-gray .bg-blue h1,
.bg-gray .bg-blue h2,
.bg-gray .bg-blue h3,
.bg-gray .bg-blue p,
.bg-gray .bg-blue li,
.bg-gray .bg-blue a,
.bg-gray .bg-blue-gradient h1,
.bg-gray .bg-blue-gradient h2,
.bg-gray .bg-blue-gradient h3,
.bg-gray .bg-blue-gradient p,
.bg-gray .bg-blue-gradient li,
.bg-gray .bg-blue-gradient a {
  color: var(--white-color);
}

/* =========================================================
   SECTION SUBTITLE
   Purpose:
   - Style short supporting text directly under a section heading
   - Keep subtitle treatment global and reusable
   ========================================================= */

.section-subtitle {
  font-family: var(--title-font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--brand-color);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
}

.bg-blue .section-subtitle,
.bg-blue-gradient .section-subtitle {
  color: var(--white-color);
}

/* =========================================================
   CARD BODY TEXT
   Purpose:
   - Keep paragraph text inside cards using the paragraph font
   - Do not affect card headings
   ========================================================= */

.card p {
  color: var(--dark-color);
  font-family: var(--paragraph-font);
}

.header-layout {
  display: flex;
}

@font-face {
  font-family: "EB Garamond";
  src: url(/fonts/EBGaramond-Regular.woff2) format("woff2"),
       url(/fonts/EBGaramond-Regular.woff) format("woff"),
       url(/fonts/EBGaramond-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url(/fonts/EBGaramond-Bold.woff2) format("woff2"),
       url(/fonts/EBGaramond-Bold.woff) format("woff"),
       url(/fonts/EBGaramond-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url(/fonts/OpenSans-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Testimonial Font';
  src: url(/path/to/testimonial-font.woff2) format('woff2');
  font-display: swap;
}


/* MAIN PAGE GRID SETUP */
.content-grid {
  --padding-inline: 1rem;
  --content-max-width: 1280px;
  --breakout-max-width: 1500px;

  --breakout-size: calc(
    (var(--breakout-max-width) - var(--content-max-width)) / 2
  );

  display: grid;
  grid-template-columns:
    [full-width-start] minmax(var(--padding-inline), 1fr)
    [breakout-start] minmax(0, var(--breakout-size))
    [content-start] min(
      100% - (var(--padding-inline) * 2),
      var(--content-max-width)
    )
    [content-end]
    minmax(0, var(--breakout-size)) [breakout-end]
    minmax(var(--padding-inline), 1fr) [full-width-end];
}

/* Assign 'content' column to children by default */
.content-grid > :not(.full-width) {
  grid-column: content;
}

/* Adjust grid when both 'content-grid' and 'breakout' classes are present */
.content-grid.breakout {
  /* Redefine grid columns to use 'breakout' area */
  grid-template-columns:
    [full-width-start] minmax(var(--padding-inline), 1fr)
    [breakout-start] min(
      100% - (var(--padding-inline) * 2),
      var(--breakout-max-width)
    )
    [breakout-end]
    minmax(var(--padding-inline), 1fr) [full-width-end];
}

/* Assign 'breakout' column to children */
.content-grid.breakout > * {
  grid-column: breakout;
}

/* Adjust grid when both 'content-grid' and 'full-width' classes are present */
.content-grid.full-width {
  grid-template-columns:
    [full-width-start] minmax(0, 1fr)
    [full-width-end];
}

.content-grid.full-width > * {
  grid-column: full-width;
}

img.full-width {
  width: 100%;
  max-height: 45vh;
  object-fit: cover;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wrapper {
  width: calc(100% - 3rem);
  max-width: 900px;
  margin-inline: auto;
}

.flow > * + * {
  margin-top: var(--flow-spacing, 1em);
}

.section-padding {
  padding-block: 2.5rem;
}

.primary-header {
  padding-block: 1rem;
  margin-block-end: 3rem;
  display: flex;
  grid-column: full-width;
}

.primary-header__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.even-columns {
  display: flex;
  gap: 1rem;
}

/*HEADER, NAV, LOGO, CALL TO ACTION*/

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--white-color);
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-wrapper {
  display: flex;
}

.logo img {
  height: 90px; /* Adjust the size as necessary */
  /* width: auto;   /* Maintain aspect ratio */
  /* display: block; /* Ensures no extra space around the image */
}

/* Removes default list styling */
.content-grid .item-container {
  display: flex;
  justify-content: space-between; /* Aligns children elements with space distributed between */
  align-items: center; /* Centers items vertically */
  width: 100%; /* Ensures the container takes full width */
}

.content-grid .logo {
  flex: 0 0 auto;
  text-align: left;
}

#header-nav {
  display: flex;
  justify-content: flex-start;
  z-index: 2;
  margin-left: auto;
}

#header-nav ul {
  list-style: none; /* Removes bullet points */
  padding: 0;
  margin: 0;
  display: flex;
}

#header-nav ul .item-container {
  display: flex;
}

#header-nav li {
  margin: 0 10px; /* Space between nav items */
}

#header-nav a {
  text-decoration: none;
  color: #082F47; /* Dark text color */
  font-size: var(--button-font-size);
  transition: color 0.3s, background-color 0.3s, text-decoration-color 0.3s; /* Added transition for background-color and text-decoration-color */
}

#header-nav > ul > li:not(.dropdown) > a:hover {
  text-decoration: underline; /* Added underline effect for nav items without children */
  text-decoration-color: var(--brand-color); /* Added brand color to underline effect */
}

#header-nav > ul > li > a:hover,
#header-nav .dropdown:hover > a {
  color: var(--brand-color); /* Change text color to brand color on hover for all parent links */
}

#header-nav .dropdown:hover > a {
  background-color: transparent; /* Ensure the background does not change on hover */
}

.dropdown-content a:hover {
  background: linear-gradient(to bottom, var(--brand-color), var(--brand-color-gradient-light));
  color: var(--white-color) !important; /* Ensures text color is white on hover */
}

.dropdown-content {
  position: absolute;
  background: linear-gradient(to bottom, var(--white-color), var(--off-white-color)); /* Added gradient background */
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px; /* Rounded corners */
  transform: translateY(-10px); /* Start slightly higher */
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease; /* Added transform to the transition */
  opacity: 0; /* Set initial opacity to 0 */
  visibility: hidden; /* Start with dropdown not visible */
  pointer-events: none; /* Disable pointer events when dropdown is not visible */
}

.dropdown-content a {
  color: var(--dark-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Light separation between items */
}

.dropdown-content a:first-child {
  border-top-left-radius: 5px; /* Apply rounded top left corner to the first item */
  border-top-right-radius: 5px; /* Apply rounded top right corner to the first item */
}

.dropdown-content a:last-child {
  border-bottom: none;
  border-bottom-left-radius: 5px; /* Apply rounded bottom left corner to the last item */
  border-bottom-right-radius: 5px; /* Apply rounded bottom right corner to the last item */
}

.dropdown:hover .dropdown-content {
  opacity: 1; /* Fully visible on hover */
  visibility: visible; /* Ensured dropdown becomes visible on hover */
  transform: translateY(0); /* Move to original position */
  pointer-events: auto; /* Enable pointer events when dropdown is visible */
}

#header-cta {
  display: inline-block;
  margin-left: 16px;
}

header > .item-container > a {
  text-decoration: none;
  margin-left: 16px;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
  .content-grid .item-container {
      flex-direction: column;
      text-align: center;
  }

  #header-nav, #header-cta {
      width: 100%;
      text-align: center;
  }

  #header-cta {
      margin-top: 10px; /* Adds space between nav and button on smaller screens */
  }
}



/* SECTION STYLES */

/*ALL SECTIONS*/

section {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}
/* Example: Adding padding to sections with a specific class */
.section-padding {
  padding: 100px; /* Adjust the value as needed */
}

/* Example: Adding margin to sections with a specific class */
.section-margin {
  margin: 0px 0; /* Adjust the value as needed */
}

/*SECTION BACKGROUNDS*/

  .bg-gray {
    background-color: var(--off-white-color);
    color: var(--dark-color);
  }

  .bg-white {
    background-color: var(--white-color);
    color: var(--dark-color);
  }

  .bg-blue {
    background-color: var(--dark-color);
    color: var(--white-color);
  }

  .bg-blue-gradient { /* new: global utility for blue gradient sections */
    background-image: var(--color-gradient-deep-blues); /* new: use root gradient token */
    background-size: cover; /* new: ensure gradient fills section */
    background-repeat: no-repeat; /* new: prevent tiling */
    color: var(--white-color); /* new: treat this like a dark section for default text color */
  }

  .bg-blue-gradient h2 { /* new: make section titles white on gradient backgrounds */
    color: var(--white-color); /* new: match dark section heading behavior */
  }

  .bg-blue-gradient .section-subtitle { /* new: make global subtitles white on gradient backgrounds */
    color: var(--white-color); /* new: keep subtitle readable on dark gradient sections */
  }

/* SECTION TEXT */

.text-dark {
  color: var(--dark-color);
}

.text-light {
  color: var(--white-color);
}

/* Styles for section titles on white backgrounds */
.bg-white h2 {
  color: var(--dark-color);
}

/* Styles for section titles on blue backgrounds */
.bg-blue h2 {
  color: var(--white-color);
}

.bg-white h3,
.bg-gray h3 {
  color: var(--dark-color);
}

.bg-blue h3,
.bg-blue-gradient h3 {
  color: var(--white-color);
}

.section-subtitle {
  font-family: var(--title-font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--brand-color);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
}

.bg-blue .section-subtitle {
  color: var(--white-color);
}

/* Standard Container */

.item-container {
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Cards */
/*.card-title {
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--brand-color);
}

.bg-blue .card-title,
.bg-blue-gradient .card-title {
  color: var(--white-color);
}
*/

/*SPECIFIC SECTIONS*/

/*SPECIFIC SECTION - FEATURES*/

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.6)
    ),
    url(/../images/AdobeStock_180842978_Preview.jpeg);
  background-size: cover;
  background-size: cover; /* Cover ensures the image covers the entire section */
  background-position: center; /* Aligns the background image in the center of the section */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  grid-column: breakout;
  padding: 0;
  padding-left: 80px;
  border-radius: 0px 0px 25px 25px;
}

#hero {
  padding: 0;
  min-height: 800px;
}

#hero-button {
  margin: 10px;
  margin-left: 110px;
}

.hero h1 {
  margin-bottom: 15px; /* Reduce bottom margin of h1 */
}

.hero p {
  margin-top: 0; /* Reduce top margin of p if necessary */
  font-size: 22px;
  text-align: left;
}

.hero h1,
.hero p {
  color: white; /* Change text color for better visibility */
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7); /* Adds a dark shadow to make text stand out */
}

.feature-container {
  justify-content: space-around;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

#features {
  padding-top: 30px;
  padding-bottom: 30px;
}

.feature {
  text-align: center;
  font-weight: 600;
}

.checkmark i {
  color: var(--valid-color); /* Use your desired color */
  font-size: 25px; /* Adjust size as needed */
  margin-right: 8px; /* Spacing between the icon and text */
}


/*SPECIFIC SECTION - BENEFITS*/

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap; /* Prevents the cards from wrapping to the next line */
  gap: 20px;
}

.checkmark {
  font-size: 24px;
  color: var(--valid-color);
  margin-bottom: 10px;
}

.benefits-checkmark {
  font-size: 42px;
  color: var(--valid-color);

}

.card {
  flex: 1; /* Each card will take equal space in the container */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: var(--white-color);
  text-align: center;
  margin: 10px; /* Optional: Adds additional spacing around cards if needed */
}

.card p {
  color: var(--dark-color);
  font-family: var(--paragraph-font);
}

/* SPECIFIC SECTION - AUTHORITY */


.authority .item-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent items from wrapping */
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: 30px;
  gap: 30px; /* Gap between items */
}

.authority .image-area {
  flex: 0 0 43%; /* Image takes up 45% of the width */
  margin-right: 20px; /* Gap between image and content */
  display: flex; /*Use flex to stretch the image */
  align-items: strech; /* Stretch the image to fill content area */
}

.authority .image-area img {
  width: 100%; /* Ensures image takes full width of container */
  height: 100%;
  border-radius: 10px; /* Rounded corners for the image */
  object-fit: cover; /* Keep the image aspect ratio while covering the area */
  object-position: 70%;
}

.authority .content-area {
  flex: 0 0 55%; /* Content takes up 55% of the width */
  padding: 60px;
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 10px; /* Rounded corners */
  box-sizing: border-box; /* Include padding in width calculation */
  }

.authority .content-area h2 {
  color: var(--white-color);
  margin-top: 0; /* Remove any unwanted margin */
  text-align: left;
}

.authority .content-area p {
  text-align: left; /* Left-align text */
  margin-bottom: 1em; /* Adds space between paragraphs */
  line-height: 1.6; /* Increases line height for better readability */
}

.cta-wrapper {
  margin-top: 1.5rem;
}

/*CTA BUTTON - PRIMARY*/

  .cta-button {
    position: relative; /* existing: needed for hover overlay */
    width: fit-content; /* existing: button hugs content */
    margin: 0; /* changed: remove global layout margin so sections control spacing */
    background-image: linear-gradient(180deg, var(--brand-color-gradient-light), var(--brand-color)); /* existing: base button gradient */
    color: var(--white-color); /* changed: use token for button text color */
    font-family: var(--button-font); /* new: explicit shared button font */
    font-size: var(--font-size-button); /* changed: use shared button font size token */
    padding: var(--button-padding-y) var(--button-padding-x); /* changed: use button padding tokens */
    border: none; /* existing: remove default button border */
    border-radius: var(--radius-sm); /* changed: use shared radius token */
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* existing: retain current button feel */
    text-decoration: none;
    cursor: pointer; /* existing: interactive pointer */
    overflow: hidden; /* existing: keep hover overlay clipped */
    z-index: 1; /* existing: keep overlay behind text */
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
  }

button.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: var(--line-height-body);
}

  .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
      180deg,
      var(--brand-color),
      var(--brand-color-gradient-dark)
    );
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
  }

  .cta-button:hover::before {
    opacity: 1; /* Full opacity on hover, showing the gradient */
  }

/*CTA BUTTON - SECONDARY*/

.button-secondary { /* changed: make secondary buttons visually match the primary system more closely */
  display: inline-block; /* changed: match primary button layout behavior */
  font-family: var(--button-font); /* changed: use shared button font */
  font-size: var(--font-size-button); /* changed: use shared button size */
  padding: var(--button-padding-y) var(--button-padding-x); /* changed: match primary button padding */
  border-radius: var(--radius-sm); /* changed: match primary button corner rounding */
  border: 2px solid var(--brand-color); /* changed: use brand blue border instead of grey/black */
  color: var(--brand-color); /* changed: use brand blue text */
  background-color: transparent; /* changed: keep secondary button hollow */
  cursor: pointer; /* changed: preserve button behavior */
  transition: all 0.25s ease; /* changed: smooth hover transition */
} /* changed */

  .button-secondary:hover {
    background-color: rgba(20, 119, 180, 0.08);
    color: var(--brand-color);
    border-color: var(--brand-color);
  }

/*CTA BUTTON - SVG RULE*/  
  .cta-button svg,
  .button-secondary svg {
    display: block;
    flex-shrink: 0;
  } /*Neccesary to properly render a primary or secondary button that has an SVG icon*/


/*SPECIFIC SECTION - TESTIMONIALS*/

.testimonials {
  font-family: var(--paragraph-font);
  text-align: center;
  background-color: #eeeeee; /* Light gray background */
}
.quote {
  font-family: var(--paragraph-font);
  font-display: swap;
  font-style: italic; /* Italicized font for quotes */
  font-size: 16px; /* Adjust font size as necessary */
  line-height: 1.4;
  text-wrap: wrap;
}

.rating img {
  height: 25px; /* Adjust size as necessary */
  margin: 10px 0;
}

.author {
  font-weight: bold;
  margin-top: 5px;
  font-family: var(--title-font);
}

/* SECTION - CONTACT FORM */

.contact-section {
  border-radius: 8px;
  width: 100%;  /* Use 100% width for the section */
  max-width: 600px; /* Max width to control the size */
  margin: 20px auto; /* Auto margins for horizontal centering */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center-align the children */
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column; /* Stack label and input vertically */
  width: 100%; /* Ensure form group takes full width */
}

.form-group label {
  text-align: left; /* Ensure label is left-aligned */
  margin-bottom: 5px; /* Space between label and input */
}

.form-group input,
.form-group textarea {
  width: 100%; /* Input fields take full available width */
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  caret-color: var(--brand-color);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-color);
  background-color: #f9fcfd;
  outline: none;
}

input[type="checkbox"]:checked {
  background-color: var(--brand-color);
}

/* FOOTER */

.site-footer {
  background-color: #2c3e50; /* Dark background for the footer */
  color: var(--off-white-color);
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--off-white-color)
}

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

.footer-column li a {
  color: var(--off-white-color);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-column li a:hover {
  opacity: 1;
}

/* WORKING AREA: */
