/* Start custom CSS */.evo-gastro-wrapper {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  padding: 55px 20px;
}

.evo-gastro-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 45px;
  align-items: start;
}

.evo-logo {
  margin-bottom: 20px;
}

.evo-logo img {
  max-width: 155px;
  height: auto;
}

.evo-badge {
  display: inline-block;
  background: #df2108;
  color: white;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.evo-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  color: #1f2937;
  margin-bottom: 16px;
}

.evo-subtitle {
  font-size: 24px;
  font-weight: 800;
  color: #df2108;
  margin-bottom: 16px;
}

.evo-text {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 640px;
}

.evo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.evo-list li {
  font-size: 16px;
  margin-bottom: 11px;
  color: #1f2937;
  font-weight: 500;
}

.evo-list li::before {
  content: "✔";
  color: #df2108;
  font-weight: bold;
  margin-right: 10px;
}

.evo-small-note {
  display: inline-block;
  background: #fff;
  border-left: 4px solid #df2108;
  padding: 13px 16px;
  color: #4b5563;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.evo-form-box {
  background: white;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.10);
  margin-top: 15px;
}

.evo-form-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.evo-form-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.45;
}

.evo-note {
  margin-top: 15px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  font-weight: 500;
}

/* Fluent Forms */

.evo-form-box .ff-el-group {
  margin-bottom: 13px !important;
}

.evo-form-box label {
  margin-bottom: 5px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.evo-form-box .ff-el-form-control {
  border-radius: 10px !important;
  border: 1px solid #dbe1e8 !important;
  padding: 11px 12px !important;
  font-size: 14px !important;
  min-height: 43px !important;
}

.evo-form-box .ff-btn-submit {
  width: 100% !important;
  background: #df2108 !important;
  border: none !important;
  padding: 15px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.evo-form-box .ff-btn-submit:hover {
  background: #b51a05 !important;
}

@media (max-width: 980px) {
  .evo-gastro-wrapper {
    padding: 35px 18px;
  }

  .evo-gastro-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .evo-gastro-left {
    order: 1;
  }

  .evo-form-box {
    order: 2;
    margin-top: 0;
    padding: 24px;
  }

  .evo-title {
    font-size: 34px;
  }

  .evo-subtitle {
    font-size: 20px;
  }

  .evo-text {
    font-size: 15px;
  }

  .evo-list li {
    font-size: 15px;
  }

  .evo-badge {
    font-size: 11px;
    line-height: 1.4;
  }
}/* End custom CSS */