body {
  font-family: Vazirmatn, Tahoma, Arial, sans-serif;
  background: #fff;
  color: #222;
  direction: rtl;
  margin: 0;
  padding: 0;
}
.header {
  background: #e44c65;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.certs img {
  margin-left: 0.5rem;
}
.hero {
  background: #f8f8f8;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}
.hero h1 {
  color: #e44c65;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.hero-img {
  margin: 1rem 0;
  height: 80px;
}
.cta {
  display: inline-block;
  background: #e44c65;
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.cta:hover {
  background: #c13b53;
}
.advantages, .services, .tech-stack, .charts, .packages, .team, .clients, .contact, .resources, .faq {
  margin: 2rem auto;
  max-width: 900px;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(228,76,101,0.07);
}
.advantages ul, .services ul, .resources ul {
  padding-right: 1.5rem;
}
.advantages li, .services li, .resources li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}
.en {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.95em;
  direction: ltr;
  display: inline-block;
}
.logos img, .footer-logos img, .client-logos img {
  margin: 0 0.5rem;
  vertical-align: middle;
}
.packages table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.packages th, .packages td {
  border: 1px solid #e44c65;
  padding: 0.5rem;
  text-align: center;
}
.packages th {
  background: #f8f8f8;
  color: #e44c65;
}
.team .members {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 1rem 0;
}
.member {
  text-align: center;
}
.member img {
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.clients .client-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 1rem 0;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.contact input, .contact textarea {
  padding: 0.6rem;
  border: 1px solid #e44c65;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Vazirmatn, Tahoma, Arial, sans-serif;
}
.contact button {
  background: #e44c65;
  color: #fff;
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.contact button:hover {
  background: #c13b53;
}
.contact-info {
  margin-bottom: 1rem;
}
.faq details {
  margin-bottom: 1rem;
}
.footer {
  background: #e44c65;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 0.7rem 0;
  margin-top: 2rem;
  border-radius: 0 0 12px 12px;
}
.footer-logos {
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .header, .advantages, .services, .tech-stack, .charts, .packages, .team, .clients, .contact, .resources, .faq {
    padding: 0.7rem;
    max-width: 98vw;
  }
  .team .members, .clients .client-logos {
    flex-direction: column;
    gap: 1rem;
  }
}
