body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #ffffff;
  text-align: center;
  scroll-behavior: smooth;
}

header {
  padding: 20px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.header-logo {
  height: 150px;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-size: 20px;
  color: #bbb;
  margin: 10px 0;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
  max-width: 700px;
  margin: 20px auto;
}

.button, .btn {
  background-color: #deff00;
  color: black;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button:hover, .btn:hover {
  background-color: #c1e100;
}

.note {
  font-size: 14px;
  color: #bbb;
  margin-top: 10px;
}

.icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.icons img {
  width: 40px;
  height: 40px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.pricing-card {
  background: #1e1e1e;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(222, 255, 0, 0.3);
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(222, 255, 0, 0.5);
}

.pricing-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 24px;
  font-weight: bold;
  color: #deff00;
}

.pricing-card p {
  font-size: 16px;
  color: #cccccc;
}

.trial-card {
  border: 2px solid #deff00;
  box-shadow: 0 4px 15px rgba(222, 255, 0, 0.6);
}

.faq {
  max-width: 800px;
  margin: 80px auto 50px;
  text-align: left;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  background: #1e1e1e;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(222, 255, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

footer {
  background-color: #1e1e1e;
  padding: 30px 20px;
  font-size: 14px;
  color: #999;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
}

.footer-icons img {
  width: 40px;
  height: auto;
  margin: 10px 5px;
  filter: grayscale(100%) brightness(1.2);
}
