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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #111827;
  line-height: 1.4;
  overflow-x: hidden;
}

/* --- Header & Logo Styles --- */
.header-container {
    background-color: #ffffff;
    padding: 12px 15px; 
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-img {
    display: block;
    margin: 0 auto;
    /* Remove the fixed max-height if you want the HTML width to lead */
    max-width: 100%; 
    height: auto; 
    object-fit: contain;
}

/* Tablet and Desktop Adjustments for Header */
@media (min-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    .logo-img {
        max-height: 60px; /* Allows the logo to be larger on monitors */
    }
}

/* Main container */
main {
  max-width: 650px;
  margin: 0 auto;
  padding: 15px 10px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 25px;
}

.hero .micro-trust {
  color: #0052FF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.hero .headline {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px 0;
  color: #111827;
}

.hero .subheadline {
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 15px;
}

/* CTA section */
.cta-wrapper {
  background: linear-gradient(135deg, #0052FF 0%, #0036A3 100%);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.2);
  margin-bottom: 25px;
}

.cta-wrapper .cta-context {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.95;
}

.cta-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #0052FF;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-wrapper a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 82, 255, 0.3);
}

.cta-wrapper a svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  fill: #0052FF;
}

/* Testimonials */
article {
  background: white;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-bottom: 12px;
}

article p {
  font-size: 13px;
}

article .testimonial-author {
  border-top: 1px solid #f3f4f6;
  padding-top: 6px;
  margin-top: 6px;
}

article .testimonial-author p:first-child {
  font-weight: 700;
  font-size: 13px;
  margin: 0;
}

article .testimonial-author p:nth-child(2) {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

article .testimonial-author p:nth-child(3) {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  display: inline-block;
  padding: 1px 5px;
  border-radius: 3px;
  margin-top: 4px;
}

/* Footer */
footer {
  background-color: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 20px 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  main {
    padding: 10px;
  }

  .hero .headline {
    font-size: 20px;
  }

  .hero .subheadline {
    font-size: 14px;
  }

  .cta-wrapper {
    padding: 20px 15px;
  }

  .cta-wrapper a {
    font-size: 16px;
    padding: 12px 25px;
  }

  article {
    padding: 10px;
  }

  article .testimonial-author p:first-child {
    font-size: 12px;
  }

  article .testimonial-author p:nth-child(2),
  article .testimonial-author p:nth-child(3) {
    font-size: 10px;
  }
}