.service-page {
  padding: 80px 20px;
  background: #0e0e0e;
  color: var(--light-color);
}

.service-content {
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 80px;
  color: #ddd;
}

.service-content h2, 
.service-content h3 {
  color: var(--accent-color);
  margin-top: 40px;
}



.jdh-service-block {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.jdh-service-block.reverse {
  flex-direction: row-reverse;
}

.jdh-service-block__image {
  flex: 0 0 50%;
}

.jdh-service-block__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.jdh-service-block__text {
  flex: 0 0 50%;
  font-size: 17px;
  color: #ddd;
  line-height: 1.2;
  padding: 10px;
}

@media (max-width: 768px) {
  .jdh-service-block {
    flex-direction: column !important;
  }
  .jdh-service-block__image {
    flex: 0 0 100%;
  }
  .jdh-service-block__text {
    flex: 0 0 100%;
    font-size: 17px;
    color: #ddd;
    line-height: 1.2;
    padding: 0px;
  }
}










.jdh-aboutus-icons {
  text-align: center;
  margin-top: 70px;
}
.jdh-aboutus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.jdh-aboutus-icon-block {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jdh-aboutus-icon-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}
.jdh-aboutus-icon-block svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.jdh-aboutus-icon-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
}
.jdh-aboutus-icon-block p {
  font-size: 16px;
  color: #333;
}

.jdh-aboutus-gallery {
  margin-top: 70px;
  padding: 80px 20px;
  background: #f4f4f4;
  border-radius: 10px;
}
.jdh-aboutus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.jdh-aboutus-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.jdh-aboutus-gallery-item:hover {
  transform: translateY(-5px);
}
.jdh-aboutus-gallery-item img {
  width: 100%;
  display: block;
  border-radius: 14px;
  min-height: 300px;
}
.jdh-aboutus-gallery-caption {
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  border-radius: 0 0 14px 14px;
}
.jdh-aboutus-gallery-caption h4 {
  margin: 0 0 5px;
  font-size: 18px;
}
.jdh-aboutus-gallery-caption p {
  margin: 0;
  font-size: 14px;
}













.jdh-contact-section {
  padding: 100px 20px;
  background: #ffffff;
  color: #000000;
  border-radius: 15px;
  margin-top: 70px;
}
.jdh-contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.jdh-contact-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}
.jdh-contact-subtext {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
  color: #555;
}
.jdh-contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.jdh-contact-details, .jdh-contact-form {
  flex: 1;
  min-width: 300px;
}
.jdh-contact-details h3, .jdh-contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.jdh-contact-details ul {
  list-style: none;
  padding: 0;
}
.jdh-contact-details li {
  margin-bottom: 10px;
  font-size: 16px;
}
.jdh-contact-details a {
  color: #CFAD65;
  text-decoration: none;
}
.jdh-contact-form form {
  display: flex;
  flex-direction: column;
}
.jdh-contact-form input,
.jdh-contact-form textarea {
  margin-bottom: 15px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f9f9f9;
  width: 100%;
}
.jdh-contact-form button {
  background-color: #CFAD65;
  color: #000000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.jdh-contact-form .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}