/* Team Allied Home Section */
.team-allied-home {
  background-color: #027244;
  padding: 80px 20px;
}

.team-allied-home-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.team-allied-home-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.team-allied-home-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-allied-home-content {
  flex: 1;
}

.team-allied-home-heading {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 20px 0;
  color: #FFF;
}

.team-allied-home-heading strong {
  font-weight: 900;
}

.team-allied-home-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  color: #FFF;
}

.team-allied-home-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #004176;
  background: #FFF;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-allied-home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #004176;
  text-decoration: none;
  background: #f8f9fa;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .team-allied-home {
    padding: 60px 20px;
  }

  .team-allied-home-container {
    flex-direction: column;
    gap: 30px;
  }

  .team-allied-home-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .team-allied-home-heading {
    font-size: 32px;
  }

  .team-allied-home-text {
    font-size: 16px;
  }

  .team-allied-home-button {
    width: 100%;
    text-align: center;
  }
}
