html {
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  direction: rtl;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.operation-card {
  max-width: 815px;
  margin: 2.5rem auto;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
}

.header {
  background-color: #8b3b46;
  clip-path: polygon(0 0, 100% 0, 101% 100%, 0 0);
  padding: 30px 20px 60px;
  text-align: right;
  width: 84%;
}

.logo-tga {
  height: 7rem;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qr {
  width: 7.813rem;
  height: 7.813rem;
  margin-top: -20px;
}

.title {
  text-align: center;
}

.title h2 {
  font-size: 1.125rem;
  color: #8b3b46;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.title p {
  font-size: 1rem;
  color: #697173;
  line-height: 1.6;
}

.container.head-top {
  margin: -48px auto 0;
}

.container {
  width: 100%;
  padding: 0 2.438rem;
  margin: 0 auto;
}

.organization-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9375rem;
  padding: 0 2.5rem;
}

.container.full {
  padding: 0;
}

.section {
  padding: 1.5625rem 0;
}

.section h2 {
  font-size: 1.125rem;
  color: #8b3b46;
  font-weight: 600;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f6fafb;
  padding: 2.5rem;
}

.detalis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.subdetalis {
  display: flex;
  align-items: center;
}

.detalis-card.english {
  text-align: left !important;
}

.detalis-card {
  color: #a2a4a8;
  font-size: .75rem;
  min-width: 5.813rem;
}

.number {
  font-size: .75rem;
  color: #697173;
  font-weight: bold;
}

.copyright {
  margin: 180px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.copyright p:first-child {
  text-align: right;
}

.copyright p:last-child {
  text-align: left;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .qr {
    width: 5rem;
    height: 5rem;
  }

  .title h2 {
    font-size: .95rem;
  }
  .section h2 {
    font-size: .93rem;
  }

  .title p {
    font-size: 0.875rem;
  }

  .container,
  .organization-info,
  .row {
    padding: 1rem;
  }

  .detalis-card {
    font-size: .75rem;
  }

  .number {
    font-size: .75rem;
  }

  .copyright {
    font-size: 0.65rem;
  }
}

@media (max-width: 410px) {
  .number {
    font-size: 0.65rem;
  }

  .detalis-card {
    font-size: 0.65rem;
    min-width: 4rem;
  }

  .subdetalis {
    gap: 3px;
  }

  .head {
    margin-top: 5px;
  }
    .copyright {
    font-size: 0.55rem;
  }
}