/* otherStyles.css */
.showcase-content {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding-top: 0px;
}

.showcase-content h2 {
  font-size: 2rem;
  color: #012972;
  margin-bottom: 20px;
  text-align: center;
}

.showcase-box {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.showcase-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.showcase-image {
  width: 125px;
  height: 125px;
  background-color: #fdfdfd;
  border-radius: 8px;
  flex-shrink: 0;
}

.showcase-image img {
  width: 100%;
  height: auto;
}

.showcase-text {
  flex: 1;
}

.showcase-box h3 {
  font-size: 1.5rem;
  color: #012972;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-box a:hover h3 {
  text-decoration: underline;
}

.showcase-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: #334d6e;
}

.showcase-box a {
  color: #012972;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.showcase-box a:hover {
  color: #012972;
  border-bottom-color: #012972;
}

@media (max-width: 768px) {
  .showcase-content {
  }

  .showcase-box {
    padding: 20px;
    gap: 20px;
  }

  .showcase-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .showcase-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .showcase-box h3 {
    font-size: 1.3rem;
    justify-content: center;
  }

  .showcase-box p {
    font-size: 1rem;
  }

  .showcase-image {
    width: 100px;
    height: 100px;
  }
}
