.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.go-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.go-back-link:hover {
  opacity: 1;
}
.hero-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hero-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.72px;
  flex-grow: 1;
}
.live-website-button {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: box-shadow 0.2s;
}
.live-website-button:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.live-website-button img {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .hero-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 28px;
  }
}

/* CSS for section section:gallery-main */
.image-card {
  background-color: var(--background-grey);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
}
.image-card img {
  border-radius: 15px; /* Inner radius for the image if needed */
  display: block;
}
@media (max-width: 768px) {
  .image-card {
    padding: 16px;
  }
}

/* CSS for section section:overview */
.overview-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.72px;
}
.section-paragraph {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16px;
}

/* CSS for section section:solution */
.solution-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px; /* Spacing between image and text */
}
.solution-image {
  border-radius: 10px;
}
.solution-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CSS for section section:about */
.about-section {
  padding: 62px 0;
}
.about-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Logo Description Box */
.logo-description-box {
  margin-top: 32px;
  max-width: 60%;
}

/* CSS for section section:gallery-secondary */
.gallery-grid {
  display: flex;
  gap: 15px;
  align-items: center;
}
.gallery-grid .image-card {
  flex: 1;
  padding: 8px 17px;
}
.gallery-grid .image-card:first-child {
  flex-grow: 2; /* Approximate ratio from design */
}
.gallery-grid .image-card:last-child {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
  }
}

/* CSS for section section:quote */
.quote-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* CSS for new sections */
.challenge-section,
.process-section,
.results-section {
  display: flex;
  justify-content: center;
}

/* Process list styling */
.process-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-list li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.16px;
  padding-left: 24px;
  position: relative;
}

.process-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--dark-accent);
  font-weight: 600;
  font-size: 16px;
}

.process-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Enhanced image cards with hover effects */
.image-card {
  transition: all var(--transition-slow) var(--ease-out-expo);
  cursor: pointer;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  transition: transform var(--transition-slow) var(--ease-out-expo);
}

.image-card:hover img {
  transform: scale(1.02);
}

/* Solution image enhancement */
.solution-image {
  transition: transform var(--transition-slow) var(--ease-out-expo);
  cursor: pointer;
}

.solution-image:hover {
  transform: scale(1.01);
}

/* Enhanced Responsive Design for Project Page */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .projects-title {
    font-size: 24px;
  }

  .about-heading,
  .section-title {
    font-size: 20px;
  }

  .about-description,
  .section-paragraph {
    font-size: 14px;
  }

  .process-list li {
    padding-left: 20px;
    font-size: 14px;
  }

  .image-card {
    padding: 16px;
    border-radius: 20px;
  }

  .solution-image {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 22px;
  }

  .projects-title {
    font-size: 22px;
  }

  .about-heading,
  .section-title {
    font-size: 18px;
  }

  .about-description,
  .section-paragraph {
    font-size: 13px;
  }

  .process-list {
    gap: 12px;
  }

  .process-list li {
    font-size: 13px;
    padding-left: 18px;
  }

  .image-card {
    padding: 12px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .logo-description-box {
    margin-top: 20px !important;
    max-width: 100%;
  }

  .logo-description-box p {
    font-size: 14px !important;
  }
}
