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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  color: #1f2937;
}

/* Color Variables */
:root {
  --trust-blue: #005C88;
  --action-orange: #F75123;
  --success-green: #2D7A3E;
  --neutral-gray: #718096;
  --light-blue: #e0f2fe;
  --light-green: #dcfce7;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header */
header {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

header img {
  height: 4rem;
  width: auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--light-blue), white, var(--light-green));
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 92, 136, 0.1);
  color: var(--trust-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.benefit-icon svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.benefit-text {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.625;
}

.trust-indicators {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 1.5rem;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-checkmark {
  color: var(--success-green);
  font-size: 1.25rem;
}

.trust-text {
  color: var(--neutral-gray);
}

/* CTA Box */
.cta-box {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  border: 2px solid var(--action-orange);
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
}

.cta-subtitle {
  font-size: 0.875rem;
  color: var(--neutral-gray);
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: block;
  width: 100%;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  background-color: var(--action-orange);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}

.cta-button:hover {
  background-color: #ea4c11;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-gray);
}

.cta-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--success-green);
}

.cta-footer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--neutral-gray);
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.main-headline {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.main-description {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  margin-bottom: 2rem;
}

/* Testimonial Section */
.testimonial-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.testimonial-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-gray);
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--trust-blue);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--trust-blue);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--neutral-gray);
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9fafb;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-gray);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  padding-right: 2rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--trust-blue);
  transition: transform 0.3s;
}

.faq-icon.open {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.open {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-answer-text {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--neutral-gray);
  line-height: 1.625;
}

.faq-cta {
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--action-orange);
}

.faq-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.faq-cta-text {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background-color: var(--action-orange);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-cta-button:hover {
  background-color: #ea4c11;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-cta-footer {
  font-size: 0.875rem;
  color: var(--neutral-gray);
  margin-top: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .main-headline {
    font-size: 2.25rem;
    text-align: left;
  }

  .main-description {
    text-align: left;
  }

  .faq-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 640px) {
  .faq-title {
    font-size: 2.25rem;
  }

  .testimonial-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
