.djm-contact {
  background: #d6eae6 !important;
  padding: 40px 20px;   
}

.djm-contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.djm-contact-info {
  background: #ffffff;
  padding: 22px 24px;
  box-shadow: 0 12px 15px rgba(0,0,0,0.10);
}

.djm-contact-title {
  font-size: 26px;
  font-weight: 700;
  color: #0d396a;
  margin-bottom: 6px;
}

.djm-contact-lead {
  font-size: 14px;
  line-height: 1.55;
  color: #355f8c;
  margin-bottom: 14px;
}

.djm-contact-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px; 
}

.djm-contact-row strong {
  font-size: 11px;
  text-transform: uppercase;
  color: #0d396a;
  white-space: nowrap;
	font-weight: 800;
}

.djm-contact-row a {
  font-size: 14px;
  letter-spacing: 1px;
  color: #0d396a;
  text-decoration: none;
}

.djm-contact-row a:hover {
  text-decoration: underline;
}

.djm-contact-block {
  margin-bottom: 10px;
}

.djm-contact-block strong {
   font-size: 11px;
  text-transform: uppercase;
  color: #0d396a;
  white-space: nowrap;
	font-weight: 800;
}

.djm-contact-block p {
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
	 letter-spacing: 1px;
	 color: #0d396a;
}

.djm-contact-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 18px;
  background: #cb0131;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, transform .2s ease;
}

.djm-contact-cta:hover {
  background: #a20127;
  transform: translateY(-1px);
	color: #fff;
}

.djm-contact-cta-wrap .djm-contact-cta {
  min-width: 120px;
  text-align: center;
}

.djm-contact-map {
  overflow: hidden;
	box-shadow: 0 12px 15px rgba(0,0,0,0.10);
}

.djm-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;   
  border: 0;
}

.tb_9u7p804,
.tb_9u7p804 .tb_text_wrap,
.tb_9u7p804 .djm-contact {
  background: #d6eae6 !important;
  background-color: #d6eae6 !important;
}

/*Mobile*/
@media (max-width: 767px){
  .djm-contact-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .djm-contact{
    padding: 30px 15px;
  }

  .djm-contact-info{
    padding: 20px 18px;
  }

  .djm-contact-title{
    font-size: 22px;
  }

  .djm-contact-lead{
    font-size: 13px;
  }

  .djm-contact-row{
    flex-wrap: wrap;
    gap: 6px;
  }

  .djm-contact-row strong,
  .djm-contact-block strong{
    font-size: 10px;
  }

  .djm-contact-row a,
  .djm-contact-block p{
    font-size: 13px;
    letter-spacing: 0.6px;
  }

  .djm-contact-cta{
    display: inline-block;
    padding: 9px 18px; 
    font-size: 13px;
  }

  .djm-contact-map iframe{
    min-height: 220px;
  }
}

/*Review + Feedback cards*/
.trust-choice-section {
  background: #edf5fe;
  padding: 40px 0;
}

.trust-choice-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.trust-choice-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 25px 35px 35px;
  background: #fff;
  color: #0d396a;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 10px rgba(13,57,106,0.22);
}

.trust-choice-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
  background: #0d396a;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%
  );
  pointer-events: none;
  z-index: 1;
}

.trust-choice-feedback::after {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.trust-choice-top,
.trust-choice-title,
.trust-choice-card p,
.trust-choice-btn {
  position: relative;
  z-index: 2;
}

.trust-choice-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.trust-google-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-google-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.trust-feedback-icon {
  width: 35px;
  height: 60px;
  flex: 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent !important;
  color: #ffffff;
  font-size: 0;
  line-height: 1;
}

.trust-feedback-icon::before {
  content: "i";
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.85;
  font-weight: 700;
  font-style: italic;
  transform: translateY(-1px);
}

.trust-choice-kicker {
  margin-bottom: 8px;
  color: #9ec3e6 !important;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-choice-stars {
  color: #f5b301;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 4px;
}

.trust-choice-mini {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.trust-choice-title {
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  color: #0d396a !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  text-align: left !important;
  text-decoration: none !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

.trust-choice-title::before,
.trust-choice-title::after {
  content: none !important;
  display: none !important;
}

.trust-choice-card p {
  margin: 0 !important;
  padding: 0 !important;
  color: #284968 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
}

.trust-choice-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin: auto auto 0 !important;
  padding: 14px 26px !important;
  background: #cb0131 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(0,0,0,0.24) !important;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease !important;
}

.trust-choice-feedback .trust-choice-btn {
  margin: auto auto 0 !important;
}

.trust-choice-btn:hover {
  background: #a20127 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.30) !important;
}

@media (max-width: 767px) {
  .trust-choice-section {
    background: #edf5fe;
    padding: 28px 0;
  }

  .trust-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .trust-choice-card {
    min-height: 0;
    padding: 0 18px 24px;
    box-sizing: border-box;
    box-shadow: 6px 8px 10px rgba(13,57,106,0.18);
  }

  .trust-choice-card::after {
    width: 100%;
    height: 92px;
    background: #0d396a;
  }

  .trust-choice-top {
    height: 92px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .trust-google-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .trust-feedback-icon {
    width: 30px;
    height: 46px;
    flex: 0 0 30px;
  }

  .trust-feedback-icon::before {
    font-size: 44px;
  }

  .trust-choice-kicker {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }

  .trust-choice-stars {
    font-size: 18px;
    letter-spacing: 2.5px;
  }

  .trust-choice-mini {
    font-size: 16px;
  }

  .trust-choice-title {
    font-size: 24px !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
  }

  .trust-choice-card p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .trust-choice-btn {
    display: inline-flex !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    box-sizing: border-box !important;
    margin: 20px auto 0 !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .trust-choice-feedback .trust-choice-btn {
    margin: 20px auto 0 !important;
  }
}

