@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, "Segoe UI", Arial;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.9;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 24px;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

header img {
  height: 56px;
}

header h1 {
  font-size: 1.6rem;
  color: #1e40af;
  margin: 0;
  font-weight: 700;
}

/* Sections */
section {
  margin-bottom: 56px;
}

h2 {
  font-size: 1.3rem;
  color: #1d4ed8;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Features */
.features {
  padding-right: 20px;
}

.features li {
  margin-bottom: 10px;
}

/* Contact */
.contact-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-box a {
  display: inline-block;
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-box a:hover {
  text-decoration: underline;
}

.address {
  font-size: 0.95rem;
  color: #475569;
  margin-top: 12px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  padding: 28px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  header h1 {
    font-size: 1.3rem;
  }
}
.text-center {
    text-align: center;
}
.max-w-full {
    max-width: 100%;
}