.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: 110px 0 70px;
  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);
}

/* 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;
}

/* Keep your existing 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 {
  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;
}