.yuanzhi-project-section {
  grid: 30px;
  padding-top: 50px;
  margin-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.yuanzhi-project-title {
  text-align: center;
  color: #01447a;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: bold;
}

.yuanzhi-project-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.yuanzhi-project-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* width: 300px; */
  border: 1px solid black;
  transition: transform 0.3s ease;
}

.yuanzhi-project-card:hover {
  transform: translateY(-5px);
}

.yuanzhi-project-image {
  width: 120%;
  height: 200px;
  background: linear-gradient(45deg, #01447a, #dc151a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yuanzhi-project-image img {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #01447a, #dc151a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yuanzhi-project-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #01447a;
}

.yuanzhi-project-content {
  padding-top: 40px;
  padding: 20px;
  text-align: center;
}

.yuanzhi-project-name {
  color: #01447a;
  font-size: 1em;
  font-weight: bold;
  margin-top: 10px;
  /* margin-bottom: 10px; */
}

.yuanzhi-project-description {
  color: #666;
  font-size: 14px;
}

.yuanzhi-project-divider {
  width: 50px;
  height: 3px;
  background: #dc151a;
  margin: 15px auto;
}

.yuanzhi-connect-section {
  background: linear-gradient(to right, #1e1e2f, #27293d);
  color: white;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.yuanzhi-connect-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.yuanzhi-connect-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.yuanzhi-connect-btn {
  text-decoration: none;
  background-color: #dc151a;
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.yuanzhi-connect-btn:hover {
  background-color: #dc151a;
  color: white;
}

@media (max-width: 600px) {
  .yuanzhi-connect-heading {
    font-size: 2rem;
  }

  .yuanzhi-connect-text {
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .yuanzhi-project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .yuanzhi-project-card {
    width: 100%;
    max-width: 350px;
  }

  .yuanzhi-project-title {
    font-size: 2em;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .yuanzhi-project-title {
    font-size: 1.8em;
  }

  .yuanzhi-project-image {
    height: 150px;
  }

  .yuanzhi-project-logo {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
