/* Base Styles */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #f0f0f0;
}

.container {
  background-color: #d9d9d9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.navbar ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-family: "ABeeZee", sans-serif;
}

.navbar a {
  text-decoration: none;
  color: black;
  padding: 20px;
}

.packages-heading {
  font-family: "Montserrat", sans-serif;
  color: #fe6404;
  font-size: 2em;
  text-align: center;
  margin: 20px 0;
}

.packages-headingB {
  font-family: "Montserrat", sans-serif;
  color: #2fc404;
  font-size: 2em;
  text-align: center;
  margin: 10px 0;
}

.pricing-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #e3e3e3;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  width: 140px;
  margin: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.plan-content {
  background-color: white;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  border: 2px solid black;
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 120px;
}

.plan-content p {
  margin: 0;
  font-size: 20px;
  color: #555;
}

.plan-content h1 {
  margin: 10px 0 0;
  font-size: 35px;
  color: black;
}

.join-button {
  background-color: Orange;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid black;
  border-top: none;
  cursor: pointer;
}

.join-button:hover {
  background-color: #333;
}

.container-text {
  background-color: #d9d9d9;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
}

.main-text {
  font-family: "Alexandria", sans-serif;
  font-weight: lighter;
}

.number {
  font-family: "Alexandria", serif;
}

.copyright {
  background-color: black;
  color: white;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright h4 {
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.last {
  display: flex;
  flex-direction: column;
}

/* Media Queries */

/* Tablets */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }

  .navbar ul {
    flex-direction: row;
    align-items: flex-start;
  }

  .navbar a {
    padding: 10px 10px;
  }

  .pricing-card {
    width: 45%;
  }

  .number {
    position: static;
    margin-top: 10px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .pricing-card {
    width: 100%;
  }

  .packages-heading {
    font-size: 1.5em;
  }

  .container-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .number {
    margin-top: 10px;
  } .navbar a {
    padding: 8px;
    font-size: 14px;
  }

  .logo img {
    height: 40px;
  }
}
