.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 */
}
/* Requirements Page CSS */

:root {
    --primary-color: #5a8d55;
    --secondary-color: #84b97f;
    --light-color: #e8f5e4;
    --dark-color: #3a5c38;
    --white-color: #ffffff;
    --section-padding: 60px 0;
    --heading-color: #4a623e;
    --text-color: #333333;
    --section-bg: #f8f9fa;
    --card-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
  }
  
  .larger-text {
    font-size: 18px;
    line-height: 1.6;
  }
  
  /* Page Title */
  .page-title {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 120px 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 {
    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;
  }
  
  /* Section Styles */
  section {
    padding: var(--section-padding);
    position: relative;
  }
  
  section.light-background {
    background-color: var(--light-color);
    position: relative;
  }
  
  /* Section headings like in the example */
  .section-heading {
    font-size: 36px;
    color: #8aab7b; /* This light green color matches the screenshot */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  .section-heading:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 3px;
    background: #8aab7b; /* Same light green color */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Content text styling */
  .content-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .client-intro-box {
    padding: 30px;
  }
  
  .client-logo {
    max-width: 250px;
    transition: transform 0.3s ease;
  }
  
  .client-logo:hover {
    transform: scale(1.05);
  }
  
  /* Custom 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: var(--primary-color);
    background: rgba(90, 141, 85, 0.1);
  }
  
  .custom-tabs .nav-link.active {
    color: #fff;
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(90, 141, 85, 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;
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  /* Requirements List */
  .requirements-list {
    list-style: none;
    padding-left: 0;
  }
  
  .requirements-list li {
    position: relative;
    padding: 15px 15px 15px 35px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .requirements-list li:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
  }
  
  .requirements-list li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .requirements-list li strong {
    color: var(--heading-color);
    font-weight: 600;
  }
  
  /* 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: var(--heading-color);
    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 var(--primary-color);
  }
  
  .component-list strong {
    color: var(--heading-color);
  }
  
/* Moscow list items */
.moscow-table {
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .moscow-heading {
    color: var(--white-color);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 15px 15px 0 0;
    font-size: 20px;
  }
  
  .must-have {
    background-color: #476a44;
  }
  
  .should-have {
    background-color: #84b97f;
  }
  
  .could-have {
    background-color: #efbb40;
  }
  
  .wont-have {
    background-color: #d05353;
  }
  
  .moscow-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    min-height: 280px;
  }
  
  .moscow-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .moscow-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.5;
  }
  
  .moscow-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
  }
  
  /* Persona Cards */
  .persona-card {
    background-color: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .persona-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .persona-header {
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--dark-color));
    color: var(--white-color);
    padding: 20px;
    text-align: center;
  }
  
  .persona-header h4 {
    color: white;
    margin: 0;
    font-weight: 700;
    font-size: 24px;
  }
  
  .persona-body {
    padding: 25px;
  }
  
  .persona-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid var(--light-color);
  }
  
  .persona-card h5 {
    color: var(--heading-color);
    font-weight: 600;
    margin: 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
    font-size: 20px;
  }
  
  /* Project Partners Section */
  #project-partners {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .partners-title {
    font-size: 32px;
    color: var(--heading-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }
  
  .partners-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .partners-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  .partner-logo {
    max-height: 70px;
    margin: 20px;
    transition: transform 0.3s ease;
  }
  
  .partner-logo:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .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;
    }
    
    .moscow-table {
      margin-bottom: 30px;
    }
    
    .persona-card {
      max-width: 400px;
      margin: 0 auto 30px;
    }
    
    .partner-logo {
      max-height: 60px;
      margin: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .page-title h1 {
      font-size: 36px;
    }
    
    .section-title h2 {
      font-size: 28px;
    }
    
    .custom-tabs {
      flex-direction: column;
      padding: 10px;
    }
    
    .custom-tabs .nav-item {
      margin: 5px 0;
    }
    
    .tab-content .content-section {
      padding: 20px;
    }
    
    .moscow-content {
      min-height: auto;
    }
    
    .client-logo {
      margin-top: 20px;
    }
    
    .partner-logo {
      max-height: 50px;
      margin: 10px;
    }
    
    .larger-text {
      font-size: 16px;
    }
  }
  
  /* Scroll to top */
  #scroll-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    cursor: pointer;
  }
  
  #scroll-top:hover {
    background: var(--dark-color);
    opacity: 1;
    transform: translateY(-3px);
  }
  
  /* Preloader */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Smooth scrolling for anchor links */
  html {
    scroll-behavior: smooth;
  }
  
  /* Ensuring anchor links work with fixed header */
  :target {
    scroll-margin-top: 100px;
  }