* {
  font-family: 'Nunito', sans-serif;
}

.responsive-container-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  justify-content: center;
}

.responsive-container-block.bigContainer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.responsive-container-block.bigContainer:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.responsive-container-block.Container {
  max-width: 1320px;
  margin: 80px auto 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.mainImg {
  width: 35%;
  height: 490px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.allText {
  width: 50%;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-blk {
  padding: 10px;
  line-height: 1.7;
}

.text-blk.headingText {
  font-size: 45px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.text-blk.subHeadingText,
.text-blk.description {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.explore {
  background-color: #ff6f61;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: start;
}

.explore:hover {
  background-color: #e65c50;
  transform: scale(1.05);
}

.explore a {
  color: white;
  text-decoration: none;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .mainImg {
    width: 50%;
    height: auto;
  }

  .allText {
    width: 45%;
    margin-left: 20px;
  }

  .text-blk.subHeadingText,
  .text-blk.description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.Container {
    flex-direction: column;
  }

  .mainImg {
    width: 100%;
    margin-bottom: 20px;
  }

  .allText {
    width: 100%;
    margin: 0;
    align-items: center;
    text-align: center;
  }

  .text-blk.headingText {
    font-size: 36px;
  }

  .text-blk.subHeadingText,
  .text-blk.description {
    font-size: 18px;
    padding: 0 10px;
  }

  .explore {
    align-self: center;
  }
}

@media (max-width: 500px) {
  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    font-size: 32px;
  }

  .text-blk.subHeadingText,
  .text-blk.description {
    font-size: 16px;
  }

  .responsive-container-block.bigContainer {
    padding: 20px;
  }
}
