.wrap_items .item {
    border-radius: 100px 12px;
    background: white;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.1));
    overflow: hidden;
}

.display_flex {
    display: flex;
}

.wrap_items .item>* {
    width: 50%;
}

.wrap_items .item h2 {
    background: var(--Dark-Sage-Green);
    padding: 45px 0;
    text-align: center;
    color: white !important;
    text-transform: uppercase;
    margin: 0;
}

.wrap_items .item .inner {
    padding: 35px 60px;
}

.wrap_items .item h3 {
    font-size: 30px;
    color: var(--Dark-Sage-Green);
}

.wrap_items .item li {
    display: flex;
	margin-left: 0;
}

.wrap_items .item li:not(:last-child) {
    margin-bottom: 5px;
}

.wrap_items .item li * {
    color: #1F2B1A;
	font-size: 20px
}

.wrap_items .item li span {
    width: 130px;
	font-size: 20px;
    flex: 0 0 auto;
}

.wrap_items .item iframe {
    width: 100%;
    display: block;
}

@media only screen and (max-width: 768px) {
    .wrap_items .item:not(:last-child) {
        margin-bottom: 30px;
    }
	
	.wrap_items .item {
		flex-wrap: wrap;
        border-radius: 10px !important;
    }
	
	.wrap_items .item h2 {
        padding: 15px;
        font-size: 16px;
    }
	
	.wrap_items .item .inner {
        padding: 20px;
    }
	
	.wrap_items .item h3 {
        font-size: 16px;
    }
	
	.wrap_items .item li * {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .wrap_items .item>* {
        width: 100%;
        order: unset !important;
    }
}

.custom-contact-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px;
  max-width: 1200px;
  margin: auto;
  font-family: sans-serif;
}

.form-header {
  background-color: #3d6f47;
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 15px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin: -30px -30px 30px -30px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group.half {
  flex: 1 1 48%;
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 18px;
  color: var(--Dark-Sage-Green);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  padding: 12px;
  border: none;
  background-color: #e2e2e2;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
}

.wpcf7-submit {
  background-color: #fff !important;
  color: var(--Goldenrod) !important;
  border: 2px solid var(--Goldenrod) !important;
  border-radius: 20px !important;
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  width: 133px;
  cursor: pointer;
  box-shadow: 0 0 0 1px #f3f3f3 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: var(--Goldenrod) !important; /* không đổi nền */
  color: var(--Dark-Sage-Green) !important; /* không đổi màu chữ */
}

.form-row.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7-spinner {
	display: none;
}

@media (max-width: 768px) {
  .form-group.half {
    flex: 1 1 100%;
  }
	
  .form-row.center {
    justify-content: center;
    text-align: center;
  }

  .wpcf7-submit {
    display: inline-block;
    margin: 0 auto;
  }
}
