.logo-image {
  max-height: 140px !important; /* Much larger than before */
  margin-top: -20px; /* Pull the logo up significantly */
  margin-bottom: -20px; /* Pull the logo down significantly */
  position: relative;
  z-index: 1000; /* Ensure the logo stays above other elements */
}

:root {
    --primary-color: #5a8d55;
    --secondary-color: #84b97f;
    --light-color: #e8f5e4;
    --dark-color: #3a5c38;
    --white-color: #ffffff;
    --accent-color: #32de84;
    --default-color: #213b52;
  }
  
  /* Page Title - Match with requirements.css */
  .page-title {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 100px 0 60px;
    color: var(--white-color);
    position: relative;
    text-align: center;
  }
  
  .page-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Breadcrumbs - if needed */
  .breadcrumbs {
    margin-bottom: 20px;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol li {
    display: inline-block;
    margin-right: 10px;
    position: relative;
  }
  
  .breadcrumbs ol li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
  }
  
  .breadcrumbs ol li a:hover {
    color: var(--white-color);
  }
  
  .breadcrumbs ol li.current {
    color: var(--white-color);
    pointer-events: none;
  }
  
  .breadcrumbs ol li:not(:last-child)::after {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
  }
  
  /* List Styles - From research page */
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  
  ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
  }
  
  /* Section Title Styles */
  .sub-section-title h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
  }
  
  .sub-section-title h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
  }
  
  .sub-section-title h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  /* Subcontent styles from System Design page */
  .subcontent {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .subcontent:hover {
    transform: translateY(-5px);
}

.subcontent h3 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .subcontent p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: start;
  }
  
  .subcontent-container {
    padding: 2rem 0;
    width: 80%;
  }
  
  /* Tab styles */
  .custom-tabs {
    border: none;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .custom-tabs .nav-item {
    margin: 5px 5px;
  }
  
  .custom-tabs .nav-link {
    border: none;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .custom-tabs .nav-link:hover {
    color: #32de84;
    background: rgba(71, 178, 228, 0.1);
  }
  
  .custom-tabs .nav-link.active {
    color: #fff;
    background: #32de84;
    box-shadow: 0 2px 10px rgba(71, 178, 228, 0.3);
  }
  
  .custom-tabs .nav-link i {
    font-size: 1.1em;
  }
  
  .tab-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }
  
  .tab-content .content-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .tab-content .content-section h3 {
    text-align: center;
  }
  
  /* Case study styles */
  .case-study {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
  }
  
  .case-study h4 {
    color: #2c4964;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .component-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
  }
  
  .component-list li {
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #32de84;
  }
  
  .component-list strong {
    color: #2c4964;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .subcontent {
      padding: 1.5rem;
    }
    
    .subcontent h3 {
      font-size: 1.3rem;
    }
    
    .custom-tabs {
      width: 100%;
      border-radius: 30px;
    }
    
    .custom-tabs .nav-item {
      flex: 1;
    }
    
    .custom-tabs .nav-link {
      width: 100%;
      text-align: center;
      padding: 10px;
    }
    
    .tab-content .content-section {
      padding: 30px;
    }
  }

  .component-card h3, p {
    text-align: center;
  }
  .input-card h3, p {
    text-align: center;
  }
  .ui-element h3, p {
    text-align: center;
  }
  .audio-component h3, p {
    text-align: center;
  }
  .ui-element h3, p {
    text-align: center;
  }