.elementor-1132 .elementor-element.elementor-element-f03573d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1132 .elementor-element.elementor-element-eb0ce70{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c25ced0 */.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: inherit;
}

.contact-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #071129;
}

.contact-header p {
  font-size: 16px;
  color: #4e5867;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
  gap: 25px;
  margin-top: 10px;
}

/* Info boxes with clear default border */
.info-box {
  background: #ffffff;
  border: 1px solid rgba(53,129,255,0.5); /* clearly visible default */
  padding: 22px 24px;
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Hover: lighter border */
.info-box:hover {
  border-color: rgba(53,129,255,0.2); /* lighter on hover */
  box-shadow: 0 4px 16px rgba(53,129,255,0.08);
}

/* Click/active: even lighter */
.info-box:active {
  border-color: rgba(53,129,255,0.1); /* very light when clicked */
}

/* Font Awesome icons */
.info-box i {
  font-size: 28px;
  color: #3581ff;
  margin-bottom: 10px;
  display: block;
}

/* Region PNG between text and email */
.region-logo {
  display: block;
  margin: 8px auto;
  max-width: 24px;  /* button-size small */
  height: auto;
}

.info-box h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #071129;
}

.info-box p {
  font-size: 15px;
  color: #333;
  margin-top: 6px;
}

.info-box a {
  color: #3581ff;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  margin-top: 45px;
  background: #ffffff;
  border: 1px solid rgba(53,129,255,0.5); /* clearly visible default */
  padding: 32px;
  border-radius: 12px;
  transition: border-color 0.3s;
}

.contact-form:hover {
  border-color: rgba(53,129,255,0.2); /* lighter on hover */
}

.contact-form:active {
  border-color: rgba(53,129,255,0.1); /* very light when clicked */
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #071129;
}

.cf7-wrap input,
.cf7-wrap textarea {
  border-radius: 6px !important;
  border: 1px solid #ccd2d6 !important;
  font-size: 15px !important;
  padding: 12px !important;
}

.cf7-wrap input:focus,
.cf7-wrap textarea:focus {
  border-color: #3581ff !important;
  box-shadow: none !important;
}

.cf7-wrap input[type="submit"] {
  background: #3581ff !important;
  color: #fff !important;
  font-size: 17px !important;
  padding: 14px 0 !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer;
  transition: .2s;
}

.cf7-wrap input[type="submit"]:hover {
  background: #1f6fe6 !important;
}

@media (max-width: 1024px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-header h2 { font-size: 28px; }
  .contact-info {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */