/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #444;
}

p {
  margin-bottom: 1rem;
  max-width: 700px;
}

a {
  color: #0070f3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #333;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 5%;
  background: url('../images/hero.jpg') repeat;
  color: white;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 500px;
  z-index: 1;
}

.hero-right {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: right;
}

.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero h1,
.hero h2 {
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* How We Work Section */
.how-we-work {
  padding: 4rem 5%;
  background-color: #f9f9fb;
}

.step-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* How We Work Container */
.step-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Vertical Divider */
.step-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  transform: translateX(-50%);
}

/* Shared Block for Step 1 and Step 2 */
.step-block {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.voice-snapshot-block {
    padding: 20px;
}

/* Shared Text Styling */
.step-text {
  width: 100%;
  text-align: left;
}

.step-text h3 {
  font-size: 1.8rem;
  color: #1f2a38;
  text-align: center;
  margin-bottom: 0.5rem;
}

.step-text p {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

/* Question Samples – Step 1 */
.question-samples {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.question-samples img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Step 2 image */
.step-image {
  width: 100%;
  margin-top: 1rem;
}

.step-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial {
  background-color: #f9f9fb;
  padding: 3rem 5%;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.testimonial .attribution {
  margin-top: 1rem;
  font-weight: bold;
  color: #555;
}


.brand-palette {
  display: flex;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  border-top: 1px solid #3A2E2E;
  border-bottom: 1px solid #3A2E2E;
}

.logo-block {
  flex: 1;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-block img {
  width: auto;
  height: auto;
  max-height: 90vh;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.color-blocks {
  display: flex;
  flex: 2;
  flex-direction: row;
}

.color {
  height: auto;
  display: flex;
  flex: 1;
}

.color.primary {
  background-color: #4C6E91;
  flex: 2;
}

.color.secondary {
  background-color: #D8D5CE;
  flex: 1.25;
}

.color.tertiary {
  background-color: #3A2E2E;
  flex: 0.75;
}


.final-cta {
  background: url('../images/hero.jpg') repeat;
  padding: 4rem 5%;
  text-align: center;
  color: white;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.final-cta p {
  font-size: 1.1rem;
  color: white;
  max-width: 400px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  margin-bottom: 2rem;
}
.final-cta .btn {
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-left, .hero-right {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-right img {
    margin-top: 2rem;
    width: 80%;
    max-width: 300px;
  }

  .hero h1,
  .hero h2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .step-row {
    flex-direction: column;
    text-align: center;
  }

  .step-text,
  .step-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-image img {
    margin-top: 1.5rem;
  }
}

@media (max-width: 960px) {
  .step-container {
    flex-direction: column;
    gap: 4rem;
  }

  .step-container::before {
    display: none;
  }

  .step-block {
    flex: 1 1 100%;
    padding: 0;
  }

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

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