.entry-content {
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Headings */
.entry-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-one-beuedit);
  position: relative;
}
.entry-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  /* background-color: var(--color-two-txt); */
  margin-top: 8px;
  border-radius: 2px;
}

/* Columns */
.wp-block-columns.is-layout-flex {
  display: flex;
  gap: 80px;
  margin-bottom: 40px;
  flex-direction: row;
  align-items: baseline;
}
.wp-block-column {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
p{
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
}

/* Contact Form */
.get-in-touch form {
  background-color: var(--color-white-txt);
  padding: 30px;
  border-radius: 23px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #6b7b7636;
  border: 1px solid var(--color-one-newedit);
}
.get-in-touch label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--color-one-txt);
}
.get-in-touch input[type="text"],
.get-in-touch input[type="email"],
.get-in-touch textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--color-one-newedit);
  border-radius: 27px;
  font-size: 1rem;
  background: #ffffff00;
  transition: border-color 0.3s;
}
.get-in-touch input:focus,
.get-in-touch textarea:focus {
  outline: none;
  border-color: #007acc;
}
.get-in-touch .wpcf7-submit {
  background-color: var(--color-one-newedit)!important;
  color: #fff;
  padding: 12px 34px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.get-in-touch .wpcf7-submit:hover {
  background-color: #005fa3;
}

/* "Where to Find Us" Section */
.where-to-find-us p {
  margin-bottom: 10px;
}
.where-to-find-us strong {
  display: block;
  margin-top: 12px;
  color: #007acc;
}

/* Social Icons */
.entry-content .fab {
  transition: transform 0.3s;
}
.entry-content .fab:hover {
  transform: scale(1.2);
}
.entry-content .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .wp-block-columns.is-layout-flex {
    flex-direction: column;
  }
  .join-us-section {
    padding: 40px 10px;
  }
}

section.get-in-touch {
    width: 100%;
}

section.findus {
    width: 54vw;
}

section.join-us-section {
    height: 43vh;
}
.wpcf7-form-control-wrap{
    display: block;
    margin-top: 1px;
}