body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.nActive-wrapper {
  line-height: 1.6;
  font-size: 16px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f8f9fa;
  color: #333333;
}

.nActive-wrapper span[property="description"] {
  display: none;
}

.nActive-wrapper img {
  max-width: 100%;
}

.nActive-wrapper .container {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0px 40px;
  width: 85%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.nActive-wrapper .container .header,
.nActive-wrapper .container .footer {
  clear: both;
  text-align: center;
  padding: 40px 0px;
}

.nActive-wrapper .container .header {
  border-bottom: 3px solid #dc2626;
  margin-bottom: 30px;
}

.nActive-wrapper .container .column-left {
  width: 35%;
  float: left;
  text-align: center;
  padding: 0 5% 0 0;
}

.nActive-wrapper .container .column-left img {
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.nActive-wrapper .container .column-left img:hover {
  transform: scale(1.02);
}

.nActive-wrapper .container .column-right {
  width: 60%;
  float: left;
}

.nActive-wrapper .container .column-right h1 {
  color: #dc2626;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.nActive-wrapper .container .column-right h2 {
  color: #666666;
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .nActive-wrapper .container {
    width: 95%;
    padding: 0px 20px;
  }
  
  .nActive-wrapper .container .column-left,
  .nActive-wrapper .container .column-right {
    width: 100%;
    float: none;
  }
  
  .nActive-wrapper .container .column-left {
    padding: 0;
    margin-bottom: 30px;
  }
  
  .nActive-wrapper .container .column-right h1 {
    font-size: 1.8em;
    text-align: center;
  }
  
  .nActive-wrapper .container .column-right h2 {
    font-size: 1.1em;
    text-align: center;
  }
}

.nActive-wrapper .container .table {
  margin: 30px 0px;
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nActive-wrapper .container .table td {
  padding: 15px 12px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.nActive-wrapper .container .table td:first-child {
  background-color: #f8f9fa;
  font-weight: 600;
  width: 30%;
  color: #dc2626;
}

.nActive-wrapper .container .table tr:last-child td {
  border-bottom: none;
}

.nActive-wrapper .container .table tr:hover {
  background-color: #fcfcfc;
}

/* Enhanced Tab Styling */
.nActive-wrapper .nTabs {
  position: relative;
  min-height: 600px;
  clear: both;
  margin: 40px 0 25px;
  background: transparent;
}

.nActive-wrapper .nTabs .tab {
  float: left;
}

.nActive-wrapper .nTabs .tab label {
  cursor: pointer;
  background: #f8f9fa;
  color: #666666;
  padding: 12px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 6px 6px 0 0;
  margin-left: -2px;
  margin-right: 8px;
  position: relative;
  left: 2px;
  top: -29px;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nActive-wrapper .nTabs .tab label:hover {
  background: #f1f3f4;
  color: #dc2626;
  transform: translateY(-2px);
}

.nActive-wrapper .nTabs .tab [type=radio] {
  display: none;
}

.nActive-wrapper .nTabs .tab .content {
  position: absolute;
  top: 4px;
  left: 0;
  background: white;
  right: 0;
  bottom: 0;
  padding: 25px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 0 6px 6px 6px;
  transition: opacity 0.4s ease;
  opacity: 0;
  overflow: auto;
  line-height: 1.7;
}

.nActive-wrapper .nTabs [type=radio]:checked ~ label {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
  z-index: 2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.nActive-wrapper .nTabs [type=radio]:checked ~ label ~ .content {
  z-index: 1;
  opacity: 1;
  border-color: #dc2626;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Content Styling */
.nActive-wrapper .nTabs .content h3 {
  color: #dc2626;
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 600;
}

.nActive-wrapper .nTabs .content p {
  margin-bottom: 15px;
  color: #555555;
}

.nActive-wrapper .nTabs .content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.nActive-wrapper .nTabs .content li {
  margin-bottom: 8px;
  color: #555555;
}

.nActive-wrapper .nTabs .content strong {
  color: #dc2626;
}

/* Footer Styling */
.nActive-wrapper .container .footer {
  border-top: 2px solid #f0f0f0;
  margin-top: 40px;
  padding-top: 30px;
}

.nActive-wrapper .container .footer p.muted {
  color: #888888;
  font-size: 0.9em;
  margin: 0;
}

/* HR Styling */
hr.style-four {
  border: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
  margin: 30px 0;
  border-radius: 2px;
}

/* Mobile Responsive Tabs */
@media (max-width: 768px) {
  .nActive-wrapper .nTabs {
    margin: 20px 0;
  }
  
  .nActive-wrapper .nTabs .tab {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .nActive-wrapper .nTabs .tab label {
    background: #dc2626;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-weight: 600;
    font-size: 1em;
    top: auto;
    left: auto;
    margin: 0 0 2px 0;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    box-sizing: border-box;
  }
  
  .nActive-wrapper .nTabs .tab label:hover {
    background: #b91c1c;
    transform: none;
  }
  
  .nActive-wrapper .nTabs .tab .content {
    position: relative;
    opacity: 1;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .nActive-wrapper .nTabs [type=radio]:checked ~ label {
    background: #991b1b;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    transform: none;
  }
}