
.telecom-section {
  background: #fff;
}

.telecom-container {
  max-width: 1352px;
  margin: 0 auto;
  padding: 0 20px;
}
.telecom-container-inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.telecom-left {
  flex: 0 0 60%;
}

.telecom-right {
  flex: 0 0 40%;
  text-align: center;
}

.telecom-right img {
  max-width: 400px;
  width: 100%;
}

.telecom-heading {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.3;
  color: #2C180D;
  margin-bottom: 50px;
}

.telecom-heading span {
  font-weight: 500;
}

.telecom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.telecom-card {
  background: #FDF6F2;
  padding: 25px 30px;
  border-radius: 6px;
}
.telecom-card:hover {
  background: #FFE7DA;
}

.telecom-number {
  font-size: 64px;
  font-weight: 500;
  color: #EA580C;
  margin-bottom: 8px;
}

.telecom-card p {
  font-size: 20px;
  font-weight: 500;
  color: #2C180D;
  margin: 0;
}

@media (max-width: 991px) {
  .telecom-container {
    flex-direction: column;
    text-align: center;
  }

  .telecom-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .telecom-left {
      flex: 0 0 100% !important;
  }
  .telecom-card {
    padding: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .telecom-card p {
      font-size: 20px;
      text-align: left;
  }
  .telecom-number {
    font-size: 40px;
    margin-bottom: 0;
  }
}