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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  line-height: 1.6;
}

img.logo {
  height: 60px;
  max-height: 10vh;
  width: auto;
  margin-right: 1.5rem;
  vertical-align: middle;
  object-fit: contain;
  transition: height 0.2s;
  display: block;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding-bottom: 2rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem 0 2rem;
  min-height: 80px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
nav a[aria-current="page"], nav a:hover {
  color: #0072e6;
}

.hero {
  background: linear-gradient(90deg, #0072e6 0%, #00c6fb 100%);
  color: #fff;
  padding: 4rem 2rem 3rem 2rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content h1 span {
  color: #ffe066;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: #ffe066;
  color: #0072e6;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: #0072e6;
  color: #fff;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem 2rem;
}
section {
  margin-bottom: 3rem;
}

.about-preview, .services-overview, .how-it-works, .testimonials, .cta, .faq {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}
.about-preview h2, .services-overview h2, .how-it-works h2, .testimonials h2, .cta h2, .faq h2 {
  color: #0072e6;
  margin-bottom: 1.2rem;
  font-size: 2rem;
}
.link {
  color: #0072e6;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.2s;
}
.link:hover {
  color: #00c6fb;
}

.services-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-item {
  flex: 1 1 220px;
  background: #f1f7ff;
  border-radius: 0.8rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 1px 4px rgba(0,114,230,0.06);
  min-width: 220px;
}
.service-item h3 {
  color: #0072e6;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.how-it-works ol {
  margin-left: 1.2rem;
  margin-top: 1rem;
}
.how-it-works li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.testimonial-list blockquote {
  background: #f1f7ff;
  border-left: 5px solid #0072e6;
  border-radius: 0.7rem;
  padding: 1.2rem 1.5rem;
  font-style: italic;
  flex: 1 1 320px;
  min-width: 280px;
  margin: 0;
}
.testimonial-list footer {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  color: #0072e6;
  font-style: normal;
}

.cta {
  text-align: center;
  background: linear-gradient(90deg, #0072e6 0%, #00c6fb 100%);
  color: #fff;
}
.cta .btn {
  margin-top: 1.2rem;
  background: #fff;
  color: #0072e6;
}
.cta .btn:hover {
  background: #ffe066;
  color: #0072e6;
}

.faq details {
  margin-bottom: 1.1rem;
  background: #f1f7ff;
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
}
.faq summary {
  font-weight: 600;
  color: #0072e6;
  font-size: 1.08rem;
  outline: none;
}
.faq p {
  margin-top: 0.7rem;
  color: #222;
}

footer {
  background: #222;
  color: #fff;
  padding: 2rem 0 1rem 0;
  margin-top: 2rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-nav a {
  color: #ffe066;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: #fff;
}

/* Alternate background for privacy policy */
.privacy-section {
  background: #f9fafb;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

/* Colorful blockquotes for vision/mission/disclaimer */
blockquote {
  background: #e6f7ff;
  border-left: 6px solid #00b8d9;
  color: #0072e6;
  font-size: 1.13rem;
  font-style: italic;
  margin: 1.5rem 0;
  padding: 1.1rem 1.5rem;
  border-radius: 0.7rem;
  box-shadow: 0 1px 4px rgba(0,114,230,0.07);
}

/* Disclaimer style */
h3, .disclaimer {
  color: #d97706;
  font-weight: 700;
}
.disclaimer, .privacy-disclaimer {
  background: #fffbe6;
  border-left: 6px solid #ffe066;
  color: #7c5e00;
  padding: 1rem 1.5rem;
  border-radius: 0.7rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  box-shadow: 0 1px 4px rgba(255,224,102,0.07);
}

/* Headings with more vibrancy */
.about-preview h1, .about-preview h2, .about-preview h3 {
  color: #0072e6;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.about-preview h1 {
  color: #00b8d9;
  font-size: 2.2rem;
  margin-top: 0;
}

/* Section dividers */
.about-preview hr {
  border: none;
  border-top: 2px dashed #e6f7ff;
  margin: 2.2rem 0 2rem 0;
}

/* List styling for privacy */
.about-preview ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.about-preview ul li {
  margin-bottom: 0.5rem;
  font-size: 1.07rem;
}

/* Email link highlight */
.about-preview a.link {
  color: #00b8d9;
  font-weight: 600;
  text-decoration: underline;
}
.about-preview a.link:hover {
  color: #d97706;
}

/* Responsive tweaks for privacy page */
@media (max-width: 600px) {
  .about-preview, .privacy-section {
    padding: 1.2rem 0.7rem;
  }
  .about-preview h1 {
    font-size: 1.3rem;
  }
  img.logo {
    height: 40px;
    margin-right: 0.7rem;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  nav, main, .footer-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .services-list, .testimonial-list {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  nav ul {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  main {
    padding: 1rem 0.5rem;
  }
  section {
    padding: 1.2rem 0.7rem;
  }
  .footer-content {
    padding: 0 0.5rem;
  }
  img.logo {
    height: 36px;
    margin-right: 0.7rem;
  }
}
