@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
font-family: 'Lato', arial, sans-serif;
background-color: #f5f5f5;
color: #333;

}

/* Font Sizes */
.font48 { font-size: 48px; font-weight: 700; line-height: 1.2; }
.font36 { font-size: 36px; font-weight: 700; }
.font32 { font-size: 32px; font-weight: 600; }
.font24 { font-size: 24px; font-weight: 600; }
.font22 { font-size: 18px; }
.font18 { font-size: 18px; }
.font16 { font-size: 16px; }
.font14 { font-size: 14px; }
.font12 { font-size: 12px; }
.bg-red { background: linear-gradient(127deg,rgba(1, 89, 189, 1) 0%, rgba(120, 0, 156, 1) 100%);} 
.bg-blue2 { background: linear-gradient(127deg,rgba(1, 89, 189, 1) 0%, rgba(0, 156, 140, 1) 100%);} 
.bg-blue { background: linear-gradient(122deg,rgba(1, 89, 189, 1) 0%, rgba(57, 126, 230, 1) 100%);} 
.bg-green { background: linear-gradient(127deg,rgba(1, 89, 189, 1) 0%, rgba(0, 156, 75, 1) 100%);} 
.white { color: #fff;} 
.black { color:#333333;} 
.blue { color: #0159bd;} 
.green{color:#008700;}
.yellow{color:#fff200;}
.grey{color:grey;}
.lightgrey{color:#d0d0d0;}
.purple{color:#2c297f;}
.cursor{cursor: pointer;}
.upline{border-top: 1px  solid #d6d6d6 ;}
.upline-white{border-top: 1px solid #eeeeee ;}
.bottomline{border-bottom: 1px  solid #d6d6d6 ;}
.middleline{ border-top:1px  solid #d6d6d6 ; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
/* Header */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: top 0.3s;
}
 

.navigation-text{  visibility: visible; }
.navigation-bar{visibility: hidden;  display: none;}

.w-30 { width: 30%; }
.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-80 { width: 80%; }
.w-90 { width: 90%; }
.w-100 { width: 100%; }

.img-logo {
  max-width: 200px;
  height: auto;
}

.button-green {
  background: linear-gradient(to bottom, #4CAF50, #388E3C); 
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-green:hover {
  background: linear-gradient(to bottom, #66BB6A, #43A047); /* 更亮一点 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-green:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button-blue {
  background: linear-gradient(to bottom, #2196F3, #1565C0); /* 浅蓝 → 深蓝 */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-blue:hover {
  background: linear-gradient(to bottom, #42A5F5, #1E88E5); /* 更亮一点 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-blue:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Shadow Box */
.box-shadow {
  box-shadow: 0 4px 4px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 15px;
  background-color: #fff;
}
.box-shadow-blue {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 6px 20px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 15px;
   background: linear-gradient(to bottom, #2196F3, #1565C0)
}
/* Card */
.card {
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(to right, #ffffff, #f5f5f5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Border */
.border-red {
  border: 2px solid #CC0000;
  padding: 10px;
  border-radius: 5px;
}

/* Tags */
.tag, .tag2 {
  display: inline-block;
  background-color: #eee;
  color: #333;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 20px;
  margin-right: 5px;
  cursor: pointer;
}

.tag:hover, .tag2:hover {
  background-color: #ddd;
}

/* Image fixed background */
.img-fixed {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 100%;
}
.form-control {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-sizing: border-box;
}

.form-control:hover {
  border-color: #888;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  border-color: #007BFF;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}
/* Responsive Settings */
label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
.faq-section {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.faq-question {
  cursor: pointer;
  position: relative;
  font-size: 36px;
  font-weight: bold;
  padding-right: 25px;
  color: #0159bd;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #0056b3;
}

.faq-item.active .faq-question::after {
  content: "-";
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

@media screen and (max-width: 959px) {
.navigation-text{  visibility: hidden; display: none; }
.navigation-bar{ visibility: visible; display: block; }



  .font48 { font-size: 28px; line-height: 32px; }
  .font36 { font-size: 24px; }
  .font32 { font-size: 22px; }
  .font24 { font-size: 18px; }
  .font18 { font-size: 16px; }
  .font16 { font-size: 14px; }
  .font14 { font-size: 12px; }
  .w-30 { width: 100%; }
  .w-40 { width: 100%; }
  .w-50 { width:100%; }
  .w-60 { width: 100%; }
  .w-70 { width: 100%; }
  .w-80 { width: 100%; }
  .w-90 { width: 100%; }
  .w-100 { width: 100%; }
  .img-logo { max-width: 160px; }


.form-control {
    font-size: 18px;
    padding: 12px 16px;
  }

  .button-green {
    padding: 10px 20px;
  }

  .container {
    padding: 10px;
  }

}
.form-container {
      margin: 0 auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.form-container-yellow {
      margin: 0 auto;
      background: #e3effc;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .form-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;

    }

    .form-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .form-field {
      flex: 1 1 100%;
      display: flex;
      flex-direction: column;
    }

    label {
      margin-bottom: 8px;
      font-size: 16px;
      font-weight: 500;
      color: #444;
    }

    input, select, textarea {
      padding: 10px 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #015ecc;
      outline: none;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-actions {
      margin-top: 30px;
      text-align: right;
    }

    button {
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      background-color:#27C416;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    button:hover {
      background-color: #12B857;
    }
.faq-question {
    font-size: 16px;

  }
  .faq-answer {
    font-size: 15px;

  }
 .navigation-menu {
    display: none;
	text-align: center;
  }



@media all and (min-width: 960px) {

 .navigation-menu {
    display: block;
  }

  .mobile-menu {
    display: none;
	text-align: center;
  }
  .font48 { font-size: 48px; }
  .font36 { font-size: 36px; }
  .font32 { font-size: 32px; }
  .font24 { font-size: 24px; }
  .font18 { font-size: 18px; }
  .font16 { font-size: 16px; }
  .font14 { font-size: 14px; }
  .font12 { font-size: 12px; }
  .form-field.half { flex: 1 1 calc(50% - 10px); }

