.Projects-section {
  background: #f8f9ff;
  padding: 4rem 0;
}

.Projects-hero {
  background: linear-gradient(rgba(82, 84, 158, 0.9), rgba(82, 84, 158, 0.9)),
    url("https://img.freepik.com/free-photo/people-working-as-team-company_23-2149136895.jpg?uid=R99814670&ga=GA1.1.1309595660.1701305611&semt=ais_hybrid");
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  text-align: center;
  color: white;
}

.Projects-main-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.Projects-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.Projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.Projects-intro {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 3rem;
  margin-bottom: 5rem;
}

.Projects-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.Projects-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.Projects-intro-image:hover img {
  transform: scale(1.05);
}

.Projects-intro-text {
  padding: 2rem;
}

.Projects-intro-text h2 {
  color: #52549e;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.Projects-intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

@media (max-width: 350px) {
  .Projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .Projects-container {
    padding: 2rem 0.5rem;
  }

  .Projects-hero {
    padding: 3rem 0.5rem;
  }

  .Projects-main-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .Projects-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .Projects-intro-text h2 {
    font-size: 1.8rem;
  }

  .Projects-intro-text p {
    font-size: 1rem;
  }

  .Projects-intro {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .Projects-hero {
    padding: 4rem 1rem;
  }

  .Projects-main-title {
    font-size: 2.5rem;
  }

  .Projects-subtitle {
    font-size: 1.2rem;
  }

  .Projects-intro {
    grid-template-columns: 1fr;
  }

  .Projects-intro-text {
    padding: 1rem;
  }

  .Projects-intro-text h2 {
    font-size: 2rem;
  }
}
