
@media (max-width: 991px) {
  .requisites-section {
    padding: 60px 0;
  }
}

.requisites-section .section-heading h2 {
  color: #2d3436;
  font-weight: 700;
  margin-bottom: 16px;
}

.requisites-section .section-heading p {
  color: #636e72;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== REQUISITES CARD ===== */

.requisites-card,
.contacts-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.requisites-card:hover,
.contacts-card:hover {
  box-shadow: 0 8px 30px rgba(2, 88, 255, 0.12);
  transform: translateY(-2px);
}

.requisites-card h4,
.contacts-card h4 {
  color: #0258ff;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(2, 88, 255, 0.1);
}

/* ===== TABLE STYLES ===== */

.requisites-card .table {
  margin-bottom: 0;
  font-size: 15px;
}

.requisites-card .table th {
  color: #636e72;
  font-weight: 600;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f2f6;
  vertical-align: top;
}

.requisites-card .table td {
  color: #2d3436;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f2f6;
  line-height: 1.6;
}

.requisites-card .table tr:last-child th,
.requisites-card .table tr:last-child td {
  border-bottom: none;
}

.requisites-card .table tr:hover td {
  background-color: rgba(2, 88, 255, 0.02);
}

/* ===== CONTACTS LIST ===== */

.contacts-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f2f6;
  color: #4d5759;
  font-size: 15px;
}

.contacts-card ul li:last-child {
  border-bottom: none;
}

.contacts-card ul li strong {
  color: #2d3436;
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

.contacts-card ul li a {
  color: #0258ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contacts-card ul li a:hover {
  color: #013bb5;
  text-decoration: underline;
}

/* ===== DOWNLOAD BUTTON ===== */

.requisites-section .btn-primary {
  background-color: #0258ff;
  border-color: #0258ff;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(2, 88, 255, 0.3);
  transition: all 0.3s ease;
}

.requisites-section .btn-primary:hover {
  background-color: #0148d4;
  border-color: #0148d4;
  box-shadow: 0 6px 20px rgba(2, 88, 255, 0.4);
  transform: translateY(-2px);
}

.requisites-section .btn-primary i {
  font-size: 18px;
  vertical-align: middle;
}

.requisites-section .text-muted.small {
  color: #b2bec3 !important;
  font-size: 13px;
}

/* ===== BADGES & TAGS ===== */

.okved-badge {
  display: inline-block;
  background: rgba(2, 88, 255, 0.1);
  color: #0258ff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin: 2px 4px;
}

/* ===== INFO BOX ===== */

.requisites-info {
  background: linear-gradient(135deg, #0258ff 0%, #00d2ff 100%);
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.requisites-info h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.requisites-info p {
  margin-bottom: 0;
  opacity: 0.95;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== ACCREDITATION BADGE ===== */

.accreditation-badge {
  display: inline-flex;
  align-items: center;
  background: #d4edda;
  color: #155724;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.accreditation-badge i {
  margin-right: 8px;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {

  .requisites-card,
  .contacts-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
 

  .requisites-card h4,
  .contacts-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .requisites-card .table {
    font-size: 14px;
  }

  .requisites-card .table th,
  .requisites-card .table td {
    padding: 10px 12px;
  }

  .requisites-card .table th {
    width: 100%;
    display: block;
    margin-bottom: 4px;
  }

  .requisites-card .table tr {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f2f6;
  }

  .contacts-card ul li {
    font-size: 14px;
  }

  .contacts-card ul li strong {
    display: block;
    margin-bottom: 4px;
  }

  .requisites-section .btn-primary {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ===== PRINT STYLES ===== */


.requisites-card,
.contacts-card {
  animation: fadeInUp 0.6s ease forwards;
}

.contacts-card {
  animation-delay: 0.2s;
}
/* ===== BACK HEADER ===== */

.back-header {
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0258ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: rgba(2, 88, 255, 0.08);
  color: #013bb5;
  transform: translateX(-4px);
}

.back-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.back-button:hover svg {
  transform: translateX(-4px);
}

/* Mobile */
@media (max-width: 767px) {
  .back-header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }

  .back-button {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* ===== OKVED CARD ===== */

.okved-card,
.compliance-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.okved-card h4,
.compliance-card h4 {
  color: #0258ff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ===== OKVED LIST ===== */

.okved-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.okved-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #0258ff;
  transition: all 0.2s ease;
}

.okved-item:hover {
  background: #f1f5ff;
  transform: translateX(4px);
}

.okved-code {
  flex-shrink: 0;
  font-weight: 700;
  color: #0258ff;
  font-size: 14px;
  background: rgba(2, 88, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.okved-name {
  flex: 1;
  color: #2d3436;
  font-size: 14px;
  line-height: 1.5;
}

.okved-badge {
  flex-shrink: 0;
  background: #0258ff;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== COMPLIANCE ICON ===== */

.compliance-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(2, 88, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 767px) {
  .okved-item {
    flex-direction: column;
    gap: 8px;
  }
  
  .okved-code {
    align-self: flex-start;
  }
  
  .okved-badge {
    align-self: flex-start;
  }
}