* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.about-details-section {
  padding: 60px 30px;
  height: 100vh;
  background: #ffffff;
}

.about-header {
  max-width: 1200px;
  margin: 100px auto 25px;
  display: flex;
  justify-content: space-around;
}

.about-header h2 {
  font-size: 42px;
  color: #6a1027;
  font-weight: 600;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.about-box {
  max-width: 1300px;
  height: 65vh;
  margin: auto;
  background: #fdfaf7;
  padding: 80px 40px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.about-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-card {
  background: #5F1022;
  width: 170px;
  height: 35vh;
  border-radius: 12px;
  padding: 55px 2px 22px;
  text-align: center;
  color: #fff;
  position: relative;
}

.about-img {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #fdfaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img img {
  width: 80px;
  border-radius: 35px;
}

.about-card h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
  margin-top: 20px;
}

.about-card p {
  font-size: 15px;
  margin-bottom: 50px;
}

.about-card span {
  font-size: 16px;
  opacity: 0.9;
}

.about-footer {
  margin-top: 70px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.whatsapp {
  background: #6a1027;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.dress-code {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6a1027;
  font-size: 20px;
}

.colors i {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  background: #F4E9E4;
  display: inline-block;
  margin-left: 8px;
}

@media (max-width: 1200px) {
  .about-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-card {
    margin-bottom: 50px;
  }
}

@media (max-width: 1024px) {
  .about-details-section {
    height: auto;
    padding: 60px 20px;
  }

  .about-header {
    margin: 40px auto 40px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .about-header h2 {
    font-size: 32px;
  }

  .about-box {
    height: auto;
    padding: 60px 20px 30px;
  }

  .about-footer {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-card {
    width: 45%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .about-details-section {
    padding: 40px 10px;
  }

  .about-header h2 {
    font-size: 24px;
  }

  .about-box {
    padding: 50px 10px 20px;
  }

  .about-card {
    width: 90%;
    margin: 40px auto;
    height: auto;
    padding: 60px 10px 22px;
  }

  .about-card h4 {
    margin-bottom: 20px;
  }

  .about-card p {
    margin-bottom: 20px;
  }

  .whatsapp {
    font-size: 16px;
    padding: 8px 16px;
  }

  .dress-code {
    font-size: 16px;
    flex-direction: column;
  }

  .colors i {
    width: 40px;
    height: 40px;
  }
}