:root {
  --defaultfont: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
  --defaulttextcolor: #000000;
  --defaultlinkcolor: #732b8d;
  --navcolor: #000000;
  --navhover: #f47824;
  --primary: #ec5538;
  --primary-hover: #ee664c;
  --basemeasure: 1;
}

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

body {
  padding: 0;
  margin: 0;
  font-family: var(--defaultfont);
  font-size: 16px;
  color: var(--defaulttextcolor);
}


header {
  z-index: 50;
  position: sticky;
  top: 0;
  height: 4rem;
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 0.2px solid #dddddd;
  background-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

header .logo,
header .main-nav,
header .side {
  display: table-cell;
  vertical-align: middle;
}

header .logo {
  width: 20%;
  height: 4rem;
  padding-left: 2rem;
}

header .side {
  width: 20%;
  text-align: right;
  padding-right: 1rem;
}

header .main-nav {
  width: 60%;
  text-align: center;
  padding: 0.4rem;
}

header .main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header .main-nav li {
  display: inline-block;
  text-align: center;
  padding: 0 1rem;
}

header .main-nav li a, header .main-nav li a:visited  {
  color: var(--navcolor);
  font-weight: bold;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-decoration: none;
}

header .main-nav li a:hover {
  color: var(--navhover);
}
header .logo img {
  height: 2.5rem;
  width: auto;
}

.regular-button {
  white-space: nowrap;
  background-color: var(--primary);
  border-radius: 0.4rem;
  padding: 0.6rem 0.8rem;
  border: none;
  color: #ffffff;
  height: 2.5rem;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.regular-button:hover {
  background-color: var(--primary-hover);
}

.toggle-menu {
  white-space: nowrap;
  border-radius: 0.4rem;
  padding: 0.6rem 0.8rem;
  border: none;
  color: #000000;
  background-color: transparent;
  height: 2.5rem;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  display: none;
}

.toggle-menu:hover {
  background-color: #f5f5f5;
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Wrapper and base layout */
.wrapper {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}

/* Common text utilities */
.text-primary {
  color: var(--primary);
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Sections base styling */
section {
  padding: 4rem 2rem;
}

section h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

section > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
  color: #666666;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

/* Hero Section - #home-top */
#home-top {
  padding: 6rem calc((100% - 1400px) / 2 + 2rem);
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

@media (max-width: 1440px) {
  #home-top {
    padding: 6rem 2rem;
  }
}

#home-top .side-by-side:first-child {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#home-top .asme-compliant {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff5f2;
  border: 1px solid #ffd9cc;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  width: fit-content;
}

#home-top .asme-compliant p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#home-top .asme-compliant svg {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

#home-top h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

#home-top > .side-by-side > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #666666;
  margin: 0;
}

#home-top .two-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#home-top .two-buttons span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
}

#home-top .two-buttons span svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-orange {
  background-color: var(--primary);
  color: #ffffff;
}

.button-orange:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(236, 85, 56, 0.3);
}

.button-white {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1px solid #e5e5e5;
}

.button-white:hover {
  background-color: #f9f9f9;
  border-color: #d0d0d0;
}

.button svg {
  width: 1.25rem;
  height: 1.25rem;
}

#home-top .og-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Stats Section - #home-numbers */
#home-numbers {
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 4rem 2rem;
}

#home-numbers .stat {
  text-align: center;
}

.stat h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}

.stat h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
}

.stat p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

/* Why Choose Section - #home-why-choose */
#home-why-choose {
  background-color: #ffffff;
  padding: 5rem 2rem 2rem;
}

/* Quadrants Section - #services */
#services {
  padding: 2rem calc((100% - 1400px) / 2 + 2rem) 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 100%;
}

@media (max-width: 1440px) {
  #services {
    padding: 2rem 2rem 5rem;
  }
}

.quadrant {
  padding: 2rem;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.quadrant:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.quadrant svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.quadrant h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.quadrant p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Peace of Mind Section - #benefits */
#benefits {
  background-color: #275adf;
  padding: 5rem calc((100% - 1200px) / 2 + 2rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  max-width: 100%;
}

@media (max-width: 1240px) {
  #benefits {
    padding: 5rem 2rem;
  }
}

#benefits h2 {
  color: #ffffff;
  grid-column: 1 / -1;
}

#benefits > p {
  color: #e8f4f8;
  margin-bottom: 1rem;
  grid-column: 1 / -1;
}

#benefits > .side-by-side {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

#benefits .side-by-side svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #ffffff;
  margin-top: 0.25rem;
}

#benefits .side-by-side span {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #ffffff;
}

.peace-stats-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

#benefits > .stat {
  text-align: center;
  padding: 0;
  background: none;
}

#benefits .stat h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

#benefits .stat p {
  font-size: 1rem;
  color: #e8f4f8;
  margin: 1rem 0 0 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .peace-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #benefits {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .peace-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Trusted Section - #home-trusted */
#home-trusted {
  background-color: #ffffff;
  padding: 5rem 2rem 2rem;
}

/* Testimonials Section - #home-testimonials */
#home-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem calc((100% - 1400px) / 2 + 2rem) 5rem;
  max-width: 100%;
}

@media (max-width: 1440px) {
  #home-testimonials {
    padding: 2rem 2rem 5rem;
  }
}

.testimonial {
  padding: 2.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 1.5rem;
}

.testimonial .sign {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.testimonial .name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1rem;
}

.testimonial .comp {
  color: #666666;
  font-size: 0.875rem;
}

/* Quote/Contact Section - #contact */
#contact {
  background-color: #f7f9fb;
  padding: 5rem 2rem;
  color: #1a1a1a;
}

#contact h2 {
  color: #1a1a1a;
}

#contact > p {
  color: #666666;
}

.form-container {
  max-width: 40rem;
  margin: 3rem auto 0;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
}

.form-container > p {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 2rem;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

form .split {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

form .full {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

form .full:has(button) {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}

form input,
form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--defaultfont);
  transition: all 0.2s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236, 85, 56, 0.1);
}

form button[type="submit"] {
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

form button[type="submit"]:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(236, 85, 56, 0.3);
}

form .full a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  min-height: 2.75rem;
  box-sizing: border-box;
}

form .full a:hover {
  background-color: #000000;
  color: #ffffff;
}

form .full a svg {
  width: 1.25rem;
  height: 1.25rem;
}

form .full p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666666;
  text-align: center;
}

form .full p a {
  color: var(--primary);
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
}

form .full p a:hover {
  text-decoration: underline;
  background: none;
}

/* Upgrade Section - #upgrade-section */
#upgrade-section {
  background-color: #275adf;
  padding: 5rem 2rem 2rem;
  text-align: center;
}

#upgrade-section h2 {
  margin-bottom: 1rem;
  color: #ffffff;
}

#upgrade-section > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #e8f4f8;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

#upgrade-section a.call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #ffffff;
  color: #275adf;
  border: 1px solid #ffffff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem;
  transition: all 0.2s ease;
  min-height: 3rem;
  box-sizing: border-box;
}

#upgrade-section a.call-link:hover {
  background-color: #e8f4f8;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#upgrade-section a.call-link svg {
  width: 1rem;
  height: 1rem;
}

#upgrade-section button {
  background-color: #275adf;
  color: #ffffff;
  padding: 0.875rem 2rem;
  border: 1px solid #ffffff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0.5rem;
  transition: all 0.2s ease;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#upgrade-section button:hover {
  background-color: #1e4ab8;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#upgrade-section > p:last-of-type {
  font-size: 0.875rem;
  color: #e8f4f8;
  margin-top: 2rem;
}

/* Pricing Page Styles */
#pricings-top {
  padding: 6rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
}

#pricings-top h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

#pricings-top > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #666666;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.option {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.option.option-selected {
  border: 2px solid var(--primary);
}
.option:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.most-popular {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.option h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
}

.option > p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1.5rem;
}

.option .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  display: inline-block;
  margin-right: 0.25rem;
}

.option ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.option ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #333333;
}

.option ul li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.option button {
  width: 100%;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.option button:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(236, 85, 56, 0.3);
}

/* Responsive pricing layout */
@media (max-width: 1200px) {
  .pricing-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #pricings-top h1 {
    font-size: 2rem;
  }

  .pricing-options {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .option {
    padding: 2rem 1.5rem;
  }
}

/* About Page Styles */
#about-top {
  padding: 4rem 2rem 3rem;
  background: linear-gradient(to bottom, #ffe8e3, #ffffff);
  text-align: center;
}

#about-top h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

#about-top > p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #666666;
  max-width: 40rem;
  margin: 0 auto;
}

#partner-section {
  background-color: #ec5538;
  padding: 4rem 2rem;
  text-align: center;
}

#partner-section h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

#partner-section > p {
  color: #ffffff;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

#our-leadership-team {
  padding: 4rem calc((100% - 1200px) / 2 + 2rem);
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

@media (max-width: 1240px) {
  #our-leadership-team {
    padding: 4rem 2rem;
  }
}

#our-leadership-team .side-by-side:first-child h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

#our-leadership-team .side-by-side:first-child p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1rem;
}

#our-leadership-team .side-by-side:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe8e3;
  border-radius: 1rem;
  padding: 4rem;
  min-height: 20rem;
}

#our-leadership-team .side-by-side:last-child svg {
  width: 8rem;
  height: 8rem;
  color: #ffb8a8;
  stroke-width: 1.5;
}

#our-founders {
  padding: 4rem calc((100% - 1200px) / 2 + 2rem);
  background-color: #f9fafe;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 100%;
}

@media (max-width: 1240px) {
  #our-founders {
    padding: 4rem 2rem;
  }
}

#our-founders .container {
  text-align: center;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#our-founders .container img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #f5f5f5;
}

#our-founders .container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

#our-founders .container p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666666;
  text-align: left;
  margin: 0;
}

#people-first-philosophy {
  padding: 4rem calc((100% - 1200px) / 2 + 2rem);
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

@media (max-width: 1240px) {
  #people-first-philosophy {
    padding: 4rem 2rem;
  }
}

#people-first-philosophy .container:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe8e3;
  border-radius: 1rem;
  padding: 4rem;
  min-height: 20rem;
}

#people-first-philosophy .container:first-child svg {
  width: 8rem;
  height: 8rem;
  color: #ffb8a8;
  stroke-width: 1.5;
}

#people-first-philosophy .container:last-child h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

#people-first-philosophy .container:last-child p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1rem;
}

#the-beginnings {
  padding: 4rem 2rem;
  background-color: #f9fafe;
  width: 100%;
}

#the-beginnings h2,
#the-beginnings p {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

#the-beginnings h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: left;
}

#the-beginnings p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 2.5rem;
  text-align: left;
}

.always-on-always-ready {
  padding: 4rem calc((100% - 1200px) / 2 + 2rem);
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

@media (max-width: 1240px) {
  .always-on-always-ready {
    padding: 4rem 2rem;
  }
}

.always-on-always-ready .container:first-child h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.always-on-always-ready .container:first-child p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1rem;
}

.always-on-always-ready .container:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe8e3;
  border-radius: 1rem;
  padding: 4rem;
  min-height: 20rem;
}

.always-on-always-ready .container:last-child svg {
  width: 8rem;
  height: 8rem;
  color: #ffb8a8;
  stroke-width: 1.5;
}

@media (max-width: 1024px) {
  #our-leadership-team,
  #people-first-philosophy,
  .always-on-always-ready {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #our-founders {
    grid-template-columns: 1fr;
  }

  #about-top h1 {
    font-size: 2rem;
  }
}

/* Footer */
footer {
  background-color: #275adf;
  padding: 0 2rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.875rem;
  color: #e8f4f8;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 48rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #home-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  #home-top h1 {
    font-size: 2.5rem;
  }

  #home-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  #services {
    grid-template-columns: repeat(2, 1fr);
  }

  #home-testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .toggle-menu {
  }
  header {
    height: 4rem;
  }

  header .logo,
  header .main-nav,
  header .side {
    vertical-align: initial;
  }

  header .logo img {
    vertical-align: middle;
  }

  header .side {
    width: auto;
    height: 4rem;
    line-height: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header .side .regular-button,
  header .side .toggle-menu {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
  }

  header .main-nav {
    position: absolute;
    right: 0;
    top: 4rem;
    width: 100%;
    clear: both;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  header .main-nav.active {
    max-height: 500px;
    opacity: 1;
    background-color: rgba(255,255,255,1);
    border-top: 1px solid #e5e5e5;
  }

  header .main-nav ul {
    padding: 1rem 0;
  }

  header .main-nav li {
    display: block;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
  }

  header .main-nav li a {
    display: block;
    padding: 1rem 2rem;
  }

  header .main-nav li a:hover {
    background-color: #f9f9f9;
  }
}

@media (max-width: 768px) {
  header .logo {
    padding-left: 1rem;
  }

  header .side {
    padding-right: 1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  section h2 {
    font-size: 1.875rem;
  }

  #home-top {
    padding: 3rem 1rem;
    grid-template-columns: 1fr;
  }

  #home-top h1 {
    font-size: 2rem;
  }

  #home-numbers {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #services {
    grid-template-columns: 1fr;
  }

  form {
    grid-template-columns: 1fr;
  }

  form .full:has(button) {
    flex-direction: column;
    align-items: stretch;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  #upgrade-section a,
  #upgrade-section button {
    width: 100%;
    margin: 0.5rem 0;
  }
}