* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.features {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: #fff;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 30%;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  flex-grow: 1;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #B58C67;
}

.feature p {
  font-size: 14px;
  color: #B58C67;
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 10%;
  background-color: #fff;
  flex-wrap: wrap;
  border-radius: 1px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* Added shadow */
}


.about-text {
  flex: 1;
  max-width: 600px;
  font-family: 'Segoe UI', sans-serif;
  color: #B58C67;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #B58C67;
  font-weight: bold;
}

.about-text h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #B58C67;
  font-weight: 700;
}

.about-text .subtitle {
  font-size: 18px;
  font-style: italic;
  color: #B58C67;
  margin-bottom: 15px;
}

.about-text .highlight {
  font-weight: bold;
  font-style: normal;
  color: #B58C67;
  margin-top: 10px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #B58C67;
  color: #B58C67;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  border-radius: 4px;
}

.btn-outline:hover {
  background-color: #B58C67;
  color: #fff;
}

.about-img {
  position: relative;
  flex: 1;
  max-width: 480px;
}

.about-img img {
  width: 100%;
  border-radius: 8px;
  z-index: 2;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.about-img .img-border {
  position: absolute;
  top: 30px;
  right: -30px;
  width: 100%;
  height: 100%;
  border: 5px solid #B58C67;
  z-index: 1;
  border-radius: 8px;
}

/* --------------------
   Responsive Queries
-------------------- */

/* Tablets */
@media (max-width: 992px) {
  .feature {
    width: 45%;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text .subtitle {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .feature {
    width: 100%;
  }

  .about-us {
    flex-direction: column;
    padding: 40px 5%;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-img .img-border {
    top: 15px;
    right: -15px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 24px;
  }

  .about-text .subtitle,
  .about-text p {
    font-size: 14px;
  }

  .btn-outline {
    padding: 10px 20px;
    font-size: 14px;
  }
}
