:root {
  --white: #ffffff;
  --navy: #0a1e3f;
  --orange: #ffa962;
  --light-grey: #f5f5f5;
  --text-color: #1a1a1a;
  --border-style: 4px solid var(--navy);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

body {
  background-color: var(--light-grey);
  color: var(--text-color);
  padding: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.nav {
  width: 100%;
  border-bottom: 4px solid var(--orange);
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.nav ul {
  list-style: none;
  display: inline-flex;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}

.nav a:hover {
  color: var(--orange);
}

/* Home Hero Section */
.home-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.home-title {
  font-size: 6rem; /* larger */
  margin-bottom: 1rem;
}

.home-hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.home-hero .text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Section Boxes */
.box {
  background-color: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 80%;
}

/* Centered Boxes */
.center-box {
  margin-left: auto;
  margin-right: auto;
}

.learn-box {
  background-color: var(--navy);
  color: var(--white);
  border: 4px solid var(--orange);
  text-align: center;
}

.customers-box {
  text-align: center;
}

/* Typography */
h2 {
  font-size: 2.5rem; /* make all main headings same size */
  margin-bottom: 1rem;
}

.text-large {
  font-size: 1.25rem; /* all body text under headings same size */
  margin-bottom: 1rem;
}

.text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

/* Logos */
.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.logo-container img {
  height: 6rem;
  object-fit: contain;
}

/* Buttons */
.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--orange);
  color: var(--white);
  font-weight: bold;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
}

.button:hover {
  background-color: #e0761e;
}

/* Form */
form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--navy);
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem; /* equal spacing for all inputs */
}

button {
  padding: 0.75rem 2rem;
  background-color: var(--navy);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

button:hover {
  background-color: #163060;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .box {
    width: 100%;
  }
}

.contact-section p.text-center {
  margin-bottom: 1rem; /* Increased from default */
}

.why-it-matters {
  list-style: none;
  padding-left: 0;
  text-align: left; /* ensures proper alignment */
  margin-top: 1rem; /* optional spacing from previous text */
}

.why-it-matters li {
  margin-bottom: 0.75rem; /* space between items */
}

.form-embed {
  width: 100%;
  max-width: 640px; /* matches original iframe width */
  margin: 0 auto; /* centers the form */
  border-radius: 12px;
  overflow: hidden; /* rounds corners of iframe */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-section iframe {
  border: none;
}

@media screen and (max-width: 600px) {
  .home-title {
    font-size: 3rem;
    line-height: 1.1;
  }
}

