.partner-logo83 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 150px;
    display: block;
    margin: 0 auto;
  }

  /* Modern Comments System with Gradient Color Scheme */
.comments-area {
  max-width: 100%;
  margin: 3rem 0;
  font-family: 'Inter', sans-serif;
}

.comments-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.comments-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background: linear-gradient(135deg, #4fe3c1, #4a8fe5);
  border-radius: 2px;
}

/* Comment List */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list .children {
  margin-left: 4rem;
  list-style: none;
  position: relative;
}

.comment-list .children:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  height: 100%;
  width: 2px;
  opacity: 0.3;
}

.comment-avatar {
  border-radius: 50%;
  margin-right: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}

.comment-content {
  flex: 1;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.balance-as-text_b5 {
  margin-left: 5px;
}

/* Comment content pointer */
.comment-content:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #f8f9fa;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  align-items: center;
}

.comment-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
}

.comment-date {
  color: #888;
  font-size: 0.875rem;
}

.comment-text {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
}

.comment-reply-btn,
.comment-like-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.comment-reply-btn:hover,
.comment-like-btn:hover {
  color: #4a8fe5;
}

/* Comment Reply Link Styles */
.comment-reply {
  display: block;
}

.comment-reply a {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.comment-reply a:hover {
  color: #4a8fe5;
}

.comment-reply a i {
  margin-right: 5px;
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
  background: #fff;
  color: #555;
  border: 1px solid #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  margin-left: 10px;
  transition: all 0.2s ease;
}

#cancel-comment-reply-link:hover {
  background: #f8f9fa;
  color: #333;
}

/* Comment Form Positioning */
#respond {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  clear: both;
}

.comment #respond {
  margin-left: 2rem;
  padding: 1.5rem;
  background: #f0f7ff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, #4fe3c1, #4a8fe5) 1;
}

/* Clear floats */
.comment:after,
.comment-content:after,
.comment-respond:after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure comment layout doesn't have float issues */
.comment {
  position: relative;
  overflow: visible;
}

.comment-content {
  position: relative;
  overflow: visible;
}

/* Make sure nested comments are properly indented */
.children {
  list-style: none;
  margin-left: 3.5rem;
  position: relative;
}

/* Reply form styles */
.reply-form-container {
  margin: -1rem 0 2rem 3.5rem;
  padding: 1.5rem;
  background: #f0f7ff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, #4fe3c1, #4a8fe5) 1;
}

#reply-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Comment Form */
#commentform {
  margin-top: 2rem;
}

#commentform label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform textarea:focus {
  outline: none;
  border-color: #4a8fe5;
  box-shadow: 0 0 0 3px rgba(74, 143, 229, 0.1);
}

#commentform textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.submit-button28,
.form-submit .submit {
  background: linear-gradient(135deg, #4fe3c1, #4a8fe5);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 143, 229, 0.3);
}

.submit-button28:hover,
.form-submit .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 143, 229, 0.4);
}

.cancel-reply-btn {
  background: #fff;
  color: #555;
  border: 1px solid #e0e0e0;
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cancel-reply-btn:hover {
  background: #fafafa;
  color: #333;
}

/* Comment form placeholders */
#commentform ::placeholder {
  color: #aaa;
}

/* Comment navigation */
.comment-navigation {
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
}

.sidebar_b3 {
  width: 260px;
  background-color: #1a2b5f;
  color: white;
  transition: all 0.3s ease;
  z-index: 999999;
  position: absolute;
}

.sidebar-header_b3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo_b3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Mobile toggle button - visible only on mobile */
.mobile-toggle-sidebar_b3 {
  display: none;
  background: #1a2b5f;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 0 4px 4px 0;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.mobile-toggle-sidebar_b3 i {
  transition: transform 0.3s ease;
}

.sidebar-menu_b3 {
  list-style: none;
  padding: 1.5rem 0;
  overflow-y: auto;
  max-height: calc(100% - 80px); /* Account for header height */
}

.sidebar-menu_b3 li {
  padding: 0.8rem 1.5rem;
  margin: 0.3rem 0;
  transition: all 0.3s ease;
}

.sidebar-menu_b3 li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-menu_b3 li.active_b3 {
  background-color: rgba(255, 123, 0, 0.2);
  border-left: 4px solid #ff7b00;
}

.sidebar-menu_b3 a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu_b3 i {
  width: 24px;
  text-align: center;
}

/* Main content area */
.main-content {
  margin-left: 260px;
  padding: 20px;
  transition: margin 0.3s ease;
}

@media (max-width: 768px) {
  .sidebar_b3 {
      position: fixed;
      transform: translateX(-100%);
      height: 100%;
      top: 0;
  }
  
  .sidebar_b3.active {
      transform: translateX(0);
  }
  
  .mobile-toggle-sidebar_b3 {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  /* Rotate the chevron when sidebar is active */
  .mobile-toggle-sidebar_b3.active i {
      transform: rotate(180deg);
  }
  
  .main-content {
      margin-left: 0;
  }
  
  /* When sidebar is active, add overlay effect */
  .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 98;
      display: none;
  }
  
  .sidebar-overlay.active {
      display: block;
  }
}

.main-content_9J {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}

.page-wrapper_9J {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 2.5rem;
}

/* Page Header */
.page-header_9J {
    margin-bottom: 2.5rem;
    position: relative;
}

.page-header_9J::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ff7903;
    border-radius: 2px;
}

.page-title_9J {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.page-subtitle_9J {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.page-date_9J i,
.page-reading-time_9J i {
    color: #ff7903;
    margin-right: 0.5rem;
}

/* Content Sections */
.content-section_9J {
    margin-bottom: 2.5rem;
}

.section-title_9J {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1rem;
}

.section-title_9J::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    height: 1.25rem;
    width: 4px;
    background-color: #ff7903;
    border-radius: 2px;
}

.section-text_9J {
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.25rem;
}

.section-text_9J:last-child {
    margin-bottom: 0;
}

/* Info Card */
.info-card_9J {
    display: flex;
    gap: 1.25rem;
    background-color: rgba(255, 121, 3, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff7903;
}

.info-card-icon_9J {
    font-size: 1.5rem;
    color: #ff7903;
    flex-shrink: 0;
}

.info-card-title_9J {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-card-text_9J {
    line-height: 1.7;
    color: #444;
}

/* Feature List */
.feature-list_9J {
    list-style-type: none;
}

.feature-item_9J {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.feature-item_9J i {
    color: #ff7903;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* CTA Box */
.cta-box_9J {
    background: linear-gradient(135deg, #ff7903 0%, #ff9f50 100%);
    padding: 2rem;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    margin-top: 2rem;
}

.cta-text_9J {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.cta-button_9J {
    background-color: #fff;
    color: #ff7903;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button_9J:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-wrapper_9J {
        padding: 1.5rem;
    }
    
    .page-title_9J {
        font-size: 2rem;
    }
    
    .page-subtitle_9J {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-card_9J {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .main-content_9J {
        padding: 1.5rem 1rem;
    }
    
    .page-title_9J {
        font-size: 1.75rem;
    }
    
    .section-title_9J {
        font-size: 1.25rem;
    }
    
    .cta-box_9J {
        padding: 1.5rem;
    }
}