/* START = HERO Section CSS */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.text-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

.text-content h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.text-content h1 span {
  color: var(--primary-color);
}

.text-content p {
  margin: 10px 0;
  font-size: 1rem;
}
.image-box {
  flex: 1;
  max-width: 500px;
  text-align: right;
}

.Heroimage-box img {
  width: 85%;
  max-width: 500px;
  height: auto;
}
/* END = HERO Section CSS */

/* START section contract based suffering */
.contract-based {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1200px;
}

.image-box {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.image-box img {
  width: 70%;
  max-width: 500px;
  height: auto;
  mix-blend-mode: darken;
}

.contract-suffering {
  flex: 1;
  max-width: 600px;
  background: #e6e0ff;
  box-shadow: 5px 5px 10px rgba(127, 80, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.contract-suffering h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.contract-suffering p {
  font-size: 1rem;
  margin: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contract-based {
    flex-direction: column-reverse;
    text-align: center;
  }
  .contract-suffering {
    text-align: center;
  }
}
/* End section contract based suffering */

/* START section of Project Management  */
.project-management {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1200px;
  flex-direction: row-reverse;
}

.image-box {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.image-box img {
  width: 70%;
  max-width: 500px;
  height: auto;
  mix-blend-mode: darken;
}

.project {
  flex: 1;
  max-width: 600px;
  background: #e6e0ff;
  box-shadow: 5px 5px 10px rgba(127, 80, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.project h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.project p {
  font-size: 1rem;
  margin: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .project-management {
    flex-direction: column-reverse;
    text-align: center;
  }
  .project {
    text-align: center;
  }
}

/* End section of Project Management  */

/* START section of Technical Support and Maintenance */
.technical-s-m {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1200px;
}

.image-box {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.image-box img {
  width: 70%;
  max-width: 500px;
  height: auto;
  mix-blend-mode: darken;
}

.maintenance {
  flex: 1;
  max-width: 600px;
  background: #e6e0ff;
  box-shadow: 5px 5px 10px rgba(127, 80, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.maintenance h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.maintenance p {
  font-size: 1rem;
  margin: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .technical-s-m {
    flex-direction: column-reverse;
    text-align: center;
  }
  .maintenance {
    text-align: center;
  }
}

/* End section of Technical Support and Maintenance */
