/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f4f8;
  color: #333;
}

/* Header Section */
header {
  background-color: #3a7bd5;
  color: white;
  padding: 40px 10%;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.8em;
  font-weight: bold;
}

header p {
  font-size: 1.3em;
  margin-top: 10px;
}

/* Section Container */
.container {
  padding: 40px 10%;
}

.section {
  margin: 30px 0;
}

.section h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #3a7bd5;
}

/* Text Styles */
.section p {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.6em;
  max-width: 700px;
  margin: 0 auto;
}

/* Features and Benefits Styles */
.features, .benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.feature, .benefit {
  flex: 1 1 200px;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature:hover, .benefit:hover {
  transform: translateY(-10px);
}

.feature h3, .benefit h3 {
  font-size: 1.5em;
  color: #3a7bd5;
  margin-bottom: 10px;
}

/* Call-to-Action Section */
.cta {
  background-color: #ff5c5c;
  color: white;
  padding: 60px 10%;
  text-align: center;
}

.cta h2 {
  font-size: 2.2em;
  margin: 0;
}

/* Google Sign-In Container */
.google-signin-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.google-signin-container p {
  margin: 0;
  font-size: 1.2em;
  color: white;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features, .benefits {
    flex-direction: column;
    align-items: center;
  }

  header h1 {
    font-size: 2.4em;
  }

  header p, .section p {
    font-size: 1.1em;
  }

  .cta h2 {
    font-size: 1.8em;
  }
}
