:root {
  --evo-brand-primary: #004aad;
  --evo-brand-secondary: #1f1f1f;
  --evo-brand-accent: #d52c30;
  --evo-header-background: #fff;
--evo-row-spacing: 20px;
}

header .header-full .logo_container .widgetlogo a.logo img {
  max-height: initial !important;
}

/* Card Container */
.evx-contact-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 35px;
  max-width: 500px;
  margin: 20px auto;
}

/* Heading & Accent */
.evx-contact-wrapper h2 {
  color: #004aad;
  margin: 0 0 8px 0;
}

.evx-contact-divider {
  width: 40px;
  height: 3px;
  background: #004aad;
  margin-bottom: 25px;
}

/* Form Fields */
.evx-form-group {
  margin-bottom: 18px;
}

.evx-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.evx-form-group input,
.evx-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fdfdfd;
  box-sizing: border-box;
}

.evx-form-group input:focus,
.evx-form-group textarea:focus {
  border-color: #004aad;
  outline: none;
  background: #fff;
}

.evx-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit Button */
.evx-submit-group {
  margin-top: 20px;
}

.evx-submit-group button {
  width: 100%;
  padding: 14px;
  background: #004aad;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.evx-submit-group button:hover {
  opacity: 0.9;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .evx-contact-wrapper {
    padding: 20px;
    margin: 10px;
  }
}





.bg-custom-grey {
  background-color: #f0f4fa !important;
  color: #004aad !important; /* Sets default text color to your blue */
  width: 100% !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* If EvoX has a container inside the row, this ensures the background 
   fills the entire stripe edge-to-edge */
.bg-custom-grey {
  box-shadow: 0 0 0 100vmax #f0f4fa;
  clip-path: inset(0 -100vmax);
}