.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 */
}
/* Implementation Page CSS */

:root {
  --primary-color: #5a8d55;
  --secondary-color: #84b97f;
  --light-color: #e8f5e4;
  --dark-color: #3a5c38;
  --white-color: #ffffff;
  --accent-color: #32de84;
  --default-color: #213b52;
}

/* Page Title */
.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 */
.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: 60px 0;
  position: relative;
}

.section h1 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Layout Components */
.text-icon-container {
  display: grid;
  column-gap: 0.5rem;
  grid-template-columns: auto min-content;
}

.code-block {
  max-height: 250px;
  overflow-y: auto;
}

.uml-table {
  border: black solid 1px;
  width: min-content;
  border-collapse: collapse;
}

.uml-table > * > p {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.uml-table > div:nth-child(1) > p {
  text-align: center;
}

.uml-table > div {
  border: black solid 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-flowchart-container {
  display: grid;
  grid-template-columns: auto min-content;
}

.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;
}

.content-card {
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.image-container {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
  justify-content: center;
}

.image-container img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

.image-label {
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  color: var(--dark-color);
  font-size: 14px;
}

.design-item {
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.design-item {
  transform: translateY(-8px);
}

/* Code Styling */
pre.prettyprint {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f5f5f5;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 14px;
  line-height: 1.5;
  tab-size: 4;
}

code {
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
  color: #d63384;
}

/* Keyboard */
kbd {
  padding: 0.2em 0.4em;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

/* Icon Styling */
.icon-img {
  align-self: center;
  justify-self: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title h1 {
    font-size: 36px;
  }
  
  .section h1 {
    font-size: 28px;
  }
  
  .text-icon-container {
    grid-template-columns: 1fr;
  }
  
  .text-flowchart-container {
    grid-template-columns: 1fr;
  }
  
  .icon-img {
    margin: 20px auto;
    display: block;
  }
  
  .uml-table {
    width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .page-title h1 {
    font-size: 30px;
  }
  
  .section h1 {
    font-size: 24px;
  }
  
  .content-card {
    padding: 10px;
  }
  
  pre.prettyprint {
    font-size: 12px;
  }
}