@import url("../../assets-custom/root.css");

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: var(--ea-background-color) ;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  text-align: center;
  margin-bottom: 100px;
  margin-top: 60px;
}

.hero img {
  width: 100%;
  border-radius: 10px;
}

.pricing-section {
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.pricing-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: var(--text-color);
}

.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 150px;
}

.pricing-card {
  border: 1px solid var(--ea-primary-color);
  border-radius: 23px;
  overflow: hidden;
  max-width: 370px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.second {
  background-color: var(--ea-primary-color);
}
.second h3 {
  color: var(--text-color) !important;
}
.second .price {
  color: var(--text-color) !important;
}
.second .price span {
  color: var(--text-color) !important;
}
.second .features-list li {
  color: var(--text-color) !important;
  border-bottom: white 1px solid !important;
}
.second .features-list li img {
  filter: brightness(10);
}
.second button {
  background-color: var(--text-color) !important;
  color: var(--ea-primary-color) !important;
}

.pricing-card img {
  width: 100%;
  height: auto;
  display: block;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color:var(--text-color);
  margin: 15px 0;
  text-align: start;
  margin-left: 20px;
}

.pricing-card .price {
  font-size: 2rem;
  color: var(--ea-primary-color);
  font-weight: bold;
  margin: 10px 0;
  text-align: start;
  margin-left: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: normal;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px;
  text-align: left;
}

.features-list li {
  font-size: 1rem;
  color: var(--text-color);
  padding: 12px 0;
  border-bottom: 1px solid var(--ea-primary-color);
  position: relative;
  display: flex;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li img {
  width: 16px;
  margin-right: 10px;
}

.features-list .cross {
  color: var(--ea-primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

.pricing-card .btn {
  background-color: var(--button-colors);
  color: var(--text-color);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 20px;
}
.pricing-card .premium {
  background-color: var(--ea-background-color);
  color: var(--ea-primary-color);
}

.pricing-card button:hover {
  background-color: var(--ea-secondary-color);
}
@media screen and (max-width: 1160px) {
  .hero {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    margin-bottom: 50px;
  }
  .pricing-cards {
    flex-wrap: wrap;
  }
}
