.emailBox {
  width: 100%;
  padding: 60px 0;
  background-color: #fff
}

.emailBox .form-container {
  width: 1100px;
  margin: 0 auto
}

.emailBox .form-desc {
  color: #000;
  margin: 10px 0 30px 0;
  font-size: 14px
}

.contact-form {
  width: 100%
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.form-grid.full {
  grid-template-columns: 1fr
}

.form-field {
  display: flex;
  flex-direction: column
}

.form-field label {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 8px
}

.form-field label.label-strong {
  font-weight: 600;
  font-family: 'Arial', sans-serif
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f7f8fa;
  color: #333;
  border-radius: 8px;
  outline: none
}

.form-field select {
  width: 100%;
  height: 44px;
  border: 1px solid #e5e7eb;
  background: #f7f8fa;
  color: #333;
  border-radius: 8px;
  outline: none;
  padding: 0 12px;
  font-size: 16px;
  appearance: none;
  background-image: url('../../assets/svg/icon-arrow-down-white.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px
}

.form-field input {
  height: 44px;
  padding: 0 12px;
  font-size: 16px
}

.form-field textarea {
  min-height: 180px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.6;
  resize: vertical
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b3b3b3
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #30b284;
  box-shadow: 0 0 0 3px rgba(48, 178, 132, 0.15)
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: #e74c3c;
  background: #fff
}

.form-field.invalid select {
  border-color: #e74c3c;
  background: #fff
}

.form-field.invalid .error {
  display: block
}

.form-field .error {
  margin-top: 6px;
  font-size: 12px;
  color: #e74c3c;
  min-height: 16px;
  display: none
}

.form-field.valid input,
.form-field.valid textarea {
  background: #f7f8fa
}

.form-field.valid select {
  border-color: #30b284;
  background: #f7f8fa
}

.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px
}

.btn {
  margin-top: 30px;
  height: 42px;
  padding: 0 60px;
  border-radius: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s ease
}

.btn.primary {
  background-image: linear-gradient(90deg, #32cc9a, #03c2df);
  color: #fff;
  border-color: transparent
}

.btn.primary:hover {
  filter: brightness(1.08)
}

.btn.secondary {
  background-color: transparent;
  color: #30b284;
  border-color: #30b284
}

.btn.secondary:hover {
  background-color: rgba(48, 178, 132, 0.08)
}

.btn:disabled {
  background: #cfd8dc;
  color: #fff;
  border-color: #cfd8dc;
  cursor: not-allowed
}

@media (max-width: 1200px) {
  .emailBox .form-container {
    width: 90%
  }
}

@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr
  }

  .btn {
    width: auto
  }
}

.news-section {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  margin: 0 auto;
}

.news-back {
  width: 1320px;
  margin: 0 auto;
  padding: 0;
}

.news-wrapper {
  width: 1250px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
}

.news-box {
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;

}

.acrypetBox2 {
  width: 604px;
  height: 240px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-right: 20px;

  img {
    height: 240px;
    margin-left: -80px;
  }

  .acrypetText2 {
    .h3 {
      color: #30b284;
      font-weight: bold;
      padding: 40px 0 0 20px;
    }

    .text {
      color: #000;
      font-size: 14px;
      padding: 10px 0 0 20px;
    }

    /* Add space after parentheses in phone numbers */
    .acrypetText2 .text {
      /* Add 5px space after closing parentheses in phone numbers */
    }

    /* Style for phone numbers with parentheses */
    .acrypetText2 .text:contains('Tel:') {
      /* This would work with jQuery, but not standard CSS */
    }

    /* Add space after parentheses in phone numbers */
    .paren {
      padding-right: 5px;
    }

    .website-row {
      display: flex;
      align-items: flex-start;
    }

    .website-label {
      white-space: nowrap;
    }

    .website-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .icontext {
      color: #ccc;
      padding: 30px 0 0 20px;
      text-decoration: underline;
      cursor: pointer;
      margin-top: 120px;
    }
  }
}

.a-link {
  color: #0066cc;

}

.a-link:visited {
  color: #999;

}

.web-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 0px;
}

.web-row .left,
.web-row .right {
  flex: 1 1 0;
}


.news-section2 {
  padding: 80px 0;
  background-image: url('../../assets/2x/foot@2x.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

/* Subject Radio Group Styling */
.subject-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.radio-item input {
  display: none;
  /* Hide default radio */
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s;
  background-color: #f7f8fa;
}

/* Checked State */
.radio-item input:checked+.radio-custom {
  border-color: #30b284;
  background-color: #fff;
}

.radio-item input:checked+.radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #30b284;
}

.radio-label {
  line-height: 1.4;
}

/* Hover effect */
.radio-item:hover .radio-custom {
  border-color: #30b284;
}

/* Error state */
.form-field.invalid .radio-custom {
  border-color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
  .subject-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .subject-options {
    grid-template-columns: 1fr;
  }
}

 /* Override intl-tel-input styles to match design */
    .iti {
      width: 100%;
    }

    /* Search Box Styling Optimization */
    .iti__search-input {
      padding: 10px 12px !important;
      /* Remove extra left padding */
      border: 1px solid #e5e7eb !important;
      border-radius: 4px !important;
      font-size: 14px !important;
      width: 100% !important;
      box-sizing: border-box !important;
      margin-bottom: 8px !important;
      background-image: none !important;
      /* Remove search icon */
    }

    /* Dropdown list styling */
    .iti__country-list {
      border-radius: 8px !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
      border: 1px solid #e5e7eb !important;
      margin-top: 4px !important;
      max-height: 240px !important;
    }

    .iti__country {
      padding: 8px 12px !important;
      font-size: 14px !important;
    }

    /* Mobile responsiveness */
    @media (max-width: 640px) {
      .iti__country-list {
        width: 100% !important;
        max-width: 320px;
      }
    }

    .iti__search-input-wrapper .iti__search-icon {
      display: none;
    }

    /* Slim Select Overrides */
    .ss-main {
      color: #333;
      background-color: #f7f8fa;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      height: 44px;
      /* Match input height */
      padding: 0 12px;
    }

    .ss-main:focus,
    .ss-main.ss-open {
      border-color: #30b284;
      box-shadow: 0 0 0 3px rgba(48, 178, 132, 0.15);
    }

    .ss-main .ss-values .ss-single {
      color: #333;
      margin: 0;
      line-height: 42px;
      /* Vertically center text */
    }

    .ss-content {
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .ss-content .ss-list .ss-option.ss-highlighted,
    .ss-content .ss-list .ss-option:hover {
      background-color: #e6f7f2;
      color: #30b284;
    }

    /* Selected option style */
    .ss-content .ss-list .ss-option.ss-selected {
      background-color: #30b284 !important;
      color: #fff !important;
    }

    /* Custom Arrow Color */
    .ss-main .ss-arrow {
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      width: 12px;
      height: 12px;
    }

    .ss-main.ss-open .ss-arrow {
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2330b284' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      transform: rotate(180deg);
    }

    .ss-main .ss-arrow path {
      display: none;
    }

    /* Error state */
    .form-field.invalid .ss-main {
      border-color: #e74c3c;
      background: #fff;
    }

    /* Notice Content Styling */
    .notice-content {
      margin-top: 12px;
      padding: 16px;
      background-color: #f7f8fa;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      line-height: 1.6;
      color: #333;
    }

    .notice-content ul {
      margin: 0;
      padding-left: 20px;
      /* 去掉修饰符 */
      list-style-type: none;
    }

    .notice-content li {
      margin-bottom: 8px;
    }

    .notice-content li:last-child {
      margin-bottom: 0;
    }

    /* Checkbox Styling */
    .checkbox-container {
      display: flex;
      align-items: flex-start;
      cursor: pointer;
      font-size: 14px;
      line-height: 1.4;
      user-select: none;
    }

    .checkbox-container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    .checkbox-custom {
      position: relative;
      top: 2px;
      left: 0;
      height: 18px;
      width: 18px;
      background-color: #f7f8fa;
      border: 1px solid #e5e7eb;
      border-radius: 4px;
      margin-right: 10px;
    }

    .checkbox-container:hover input~.checkbox-custom {
      background-color: #e6f7f2;
      border-color: #30b284;
    }

    .checkbox-container input:checked~.checkbox-custom {
      background-color: #30b284;
      border-color: #30b284;
    }

    .checkbox-custom:after {
      content: "";
      position: absolute;
      display: none;
    }

    .checkbox-container input:checked~.checkbox-custom:after {
      display: block;
    }

    .checkbox-container .checkbox-custom:after {
      left: 6px;
      top: 2px;
      width: 4px;
      height: 8px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .checkbox-label {
      flex: 1;
    }

        .privacy-link {
      color: #0066cc;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .privacy-link:hover {
      text-decoration: underline;
      color: #004c99;
    }