.rti-container {
  max-width: 1700px;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 245, 235, 0.95), rgba(255, 255, 255, 0.95));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.rti-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #4a2c0d, #8b4513);
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.rti-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(225, 90, 42, 0.3) 0%, transparent 70%);
  animation: radialPulse 4s ease-in-out infinite;
  z-index: 0;
}

.rti-heading {
  color: #fff;
  font-size: 2.5em;
  margin: 0;
  z-index: 1;
  position: relative;
  animation: fadeInDown 1s ease-out;
}

.rti-subtitle {
  color: #fff;
  font-size: 1.2em;
  margin-top: 10px;
  z-index: 1;
  position: relative;
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.rti-content {
  padding: 30px 20px;
}

.rti-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rti-table th, .rti-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  vertical-align: middle;
  transition: background-color 0.3s ease;
}

.rti-table th {
  background-color: #e67e22;
  color: #fff;
  font-weight: 600;
}

.rti-table tr:hover td {
  background-color: #f9e8d7;
}

.rti-table td {
  line-height: 1.6;
  color: #333;
}

.rti-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 1em;
}

.org-chart-link {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.org-chart-link:hover {
  color: #d35400;
}

.org-chart-link .fas {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .rti-container {
    margin: 20px;
    padding: 15px;
  }

  .rti-heading {
    font-size: 2em;
  }

  .rti-subtitle {
    font-size: 1em;
  }

  .rti-table {
    font-size: 0.9em;
  }

  .rti-table th, .rti-table td {
    padding: 10px;
  }

  .org-chart-link .fas {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .rti-container {
    margin: 10px;
    padding: 10px;
  }

  .rti-heading {
    font-size: 1.5em;
  }

  .rti-subtitle {
    font-size: 0.9em;
  }

  .rti-table {
    font-size: 0.8em;
  }

  .rti-table th, .rti-table td {
    padding: 8px;
  }

  .org-chart-link {
    font-size: 0.9em;
  }

  .org-chart-link .fas {
    font-size: 0.9em;
  }
}