/* styles.css */

* {
    background: #b3d4f2;
}

body {
  font-family: 'poppins', Arial, sans-serif;
  margin: 5%;
  padding: 5%;
}

section {
  padding: 2%;
}

navbar {
  display: block;
    text-align: right;
    flex-direction: row;
}

p {
    color: black;
}

#subscription {
  display: block;

  background-color: #b3d4f2;
  padding: 30px 0;
  text-align: right;
}

.subscribe-container {
  display: flex;
  justify-content: right;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
  flex-grow: 1;
  max-width: 400px;
}

.subscribe-form input[type="email"]:focus {
  border-color: #007BFF;
}

.subscribe-form .submit-button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form .submit-button:hover {
}

#hero {
  color: white;
  text-align: center;
  padding: 100px 0;
}

#hero h1 {
  font-size: 2.5em;
  font-weight: 600;
}

#hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto;
}

.cta-button {
  display: inline-block;
  color: #007B   ;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.2);
}

#features {
  text-align: center;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.feature-card {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 300px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card:active {
  transform: translateY(2px);
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 20px;
}

#features h2 {
  margin-bottom: 50px;
}

#how-it-works {
  background-color: #fff;
  text-align: center;
  padding: 50px 0;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 10%;
}

.step {
  flex-basis: 30%;
  min-width: 250px;
  position: relative;
  padding: 20px;
}

.step-number {
  height: 40px;
  width: 40px;
  background-color: #007BFF;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.step:not(:last-child)::after {
  content: "";
  height: 2px;
  width: calc(100% - 70px);
  background-color: #007BFF;
  position: absolute;
  top: 10px;
  right: -70px;
}

#how-it-works h2 {
  margin-bottom: 50px;
}

/* Add more styles for the rest of the sections if needed */
