:root {
  /* Modern Color Palette for DAQ */
  --primary-color: #047857;
  /* A deep, sophisticated emerald-teal */
  --dark-color: #1A202C;
  --light-gray: #F7FAFC;
  --text-color: #4A5568;
  --heading-color: #1A202C;
  --border-color: #E2E8F0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: #fff;
}

/* --- Header & Navigation --- */
header {
  position: sticky;
  top: 0;
  margin-bottom: 2em;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

 main:not(.full-width) {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* --- Sections --- */
.section {
  padding: 80px 20px;
}

.section-gray {
  background-color: var(--light-gray);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* --- Hero --- */
.hero-section {
  padding: 60px 20px;
  background: radial-gradient(circle, #ffffff 0%, var(--light-gray) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.hero-text .subheadline {
  font-size: 1.2rem;
  margin: 20px 0;
}

.hero-image-wrapper {
  box-shadow: 0 20px 40px -10px rgba(74, 85, 104, 0.2);
  border-radius: 15px;
}

.hero-image-wrapper img {
  border-radius: 15px;
  width: 100%;
  display: block;
}

/* --- Alternating Big Boxes --- */
.alternating-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.alternating-box-row {
  margin-bottom: 30px;
}

.alternating-box {
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width: 75%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alternating-box-link:hover .alternating-box {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.align-left-wrapper {
  margin-right: auto;
  width: 75%;
}

.align-right-wrapper {
  margin-left: auto;
  width: 75%;
}

.alternating-box.align-left {
  flex-direction: row;
}

.alternating-box.align-right {
  flex-direction: row-reverse;
}

.alternating-box .icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.alternating-box.align-left .icon {
  margin-right: 30px;
}

.alternating-box.align-right .icon {
  margin-left: 30px;
}

.alternating-box .text-content {
  text-align: left;
}

.alternating-box h3 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.alternating-box p {
  font-size: 1rem;
  line-height: 1.6;
}

iframe {
  display: flex;
  margin: 0 auto 4em auto;
}

.images {
  margin: 2em 0;
  text-align: center;
}
.images img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

button {
  padding: .5em 2em;
  border: 0;
  border-radius: 8px;
  background: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
}

button:hover {
  background: var(--dark-color);
  cursor: pointer;
}

button a,
button a:hover,
button a:visited {
  color: white;
  text-decoration: none;
}

a.link:hover,
a.link:focus,
a:hover, a:focus {
  color: var(--primary-color);
}

@media (max-width: 768px) {

  .alternating-box,
  .align-left-wrapper,
  .align-right-wrapper {
    width: 100%;
  }
}

/* --- 18-Box Grid for Features/Benefits --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-box .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  background-color: var(--light-gray);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* --- Misc --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container .ac-para a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.faq-container .ac-para a:hover {
  text-decoration: underline;
}

.cta-section {
  text-align: center;
}

.cta-section .section-heading p {
  font-size: 1.25rem;
}

.custom-footer {
  background-color: var(--dark-color);
  color: #A0AEC0;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.custom-footer p {
  margin: 20px 0 0 0;
  opacity: 0.8;
}
