/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
header {
  background-color: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 50px;
}
.google-login {
  /* Adjust spacing as needed */
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: #4e4fae;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  background-color: #019000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #017300;
}

/* Features Section */
.features {
  padding: 4rem 0;
}
.feature {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.feature.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
  padding: 1rem;
}
.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #019000;
}
.feature-text p {
  font-size: 1rem;
  line-height: 1.5;
}
.feature-image {
  flex: 1;
  text-align: center;
}
.feature-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Demo Section */
.demo {
  background-color: #e9f7ef;
  padding: 4rem 0;
  text-align: center;
}
.video-container {
  max-width: 800px;
  margin: 2rem auto;
}
.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
}
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
  scroll-snap-type: x mandatory;
}
.testimonial {
  flex: 0 0 300px;
  background-color: #f0f2f5;
  padding: 1.5rem;
  border-radius: 8px;
  scroll-snap-align: center;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial span {
  font-weight: bold;
}

/* FAQ Section - Accordion */
.faq {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.accordion-header:hover {
  background-color: #e9f7ef;
}
.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.accordion-header.active::after {
  content: '-';
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}
.accordion-content p {
  padding: 1rem 0;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
