body {
  background: #eef5fb;
  margin: 0;
  font-family: 'Noto Sans TC', sans-serif;
  
}
header {
    width: 100%;
    background: #3f4d67;
    height: 60px;
}
footer {
    width: 100%;
    background: #3f4d67;
}
.borderBottom {
    border-bottom: solid 1px #c5c5c5;
}
#logo {
    height: 50px;
    width: auto;
    position: absolute;
    left: 0;
    top: 5px;
}
#login {
    position: absolute;
    top: 11px;
    right: 0;
    border: 0;
    background: #F1B80E;
    font-size: larger;
    padding: 5px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
    cursor: pointer;
    font-family: inherit;
}
.contentPosition {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.contentPosition h3 {
    text-align: center;
    font-weight: 300;
}
#index {
  width: 100%;
  height: 500px;
  position: relative;
}
#slogan {
    position: absolute;
    left: 30px;
    top: 100px;
    width: 370px;
}
#slogan_line {
    position: absolute;
    top: 210px;
    width: 430px;
    border-bottom: solid 2px #000;
    margin-top: 10px;
}
#description {
    position: absolute;
    top: 205px;
    left: 0px;
    font-weight: 400;
}
#indexCallToAction {
    position: absolute;
    top: 11px;
    right: 90px;
}
.btnSignUp {
    border: 0;
    padding: 5px 20px;
    font-size: larger;
    font-weight: 500;
    background: #19ACAE;
    color: #fff;
    border-radius: 5px;
    font-family: 'Noto Sans TC', sans-serif;
    cursor: pointer;
}
#iosDownload {
    position: absolute;
    top: 310px;
    left: 0;
    height: 55px;
    width: auto;
    visibility: hidden;
}
#imgWeb {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 450px;
}
#imgApp {
    position: absolute;
    bottom: 50px;
    right: 10px;
    width: 120px;
}
#resourceManagement {
    width: 100%;
    height: 550px;
    text-align: center;
}
.descriptionBlock {
    width: 200px;
    height: 130px;
    float: left;
    margin: 35px 5px;
    position: relative;
}
.descriptionBlock ul {
    display: none;
    text-align: left;
    position: absolute;
    width: 190px;
    height: auto;
    top: 100px;
    left: 8px;
    z-index: 2;
    padding-right: 10px;
    padding-bottom: 5px;
    border: solid 1px #1b1b1b;
    box-shadow: 0 0 5px 1px #d2d2d2;
    background: #fff;
}
.descriptionBlock ul li{
    margin-top: 5px;
    font-size: 14px;
}
#imgChart {
    margin: 50px 0;
    max-width: 500px;
}
#chartDescription {
    width: 500px;
    float: right;
    margin-top: 190px;
    text-align: left;
}
#imgChat {
    margin: 50px 0;
    max-width: 400px;
}
#onlineDescription {
    margin: 10px auto;
}
#imgForum {
    max-width: 500px;
    margin: 20px;
}
#pricing {
    height: 350px;
}
#priceTable {
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 #6b6b6b80;
    padding: 35px;
    width: 90%;
    margin: 40px auto;
    text-align: center;
    background: #fff;
}
#priceTable th {
    border-bottom: solid 0.5px #ccc;
}
#companyInfo {
    text-align: center;
    color: #fff;
}
#credits {
    font-size: .618rem;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.contactUsBlock {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: left;
}
.contactUsContainer {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}
.contactUsContainer h3 {
    margin-bottom: 24px;
    color: #333;
    text-align: center;
    font-size: 24px;
}
.contactUsContainer .formGroup {
    margin-bottom: 20px;
}
.contactUsContainer .formGroup label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
    font-size: 14px;
}
.contactUsContainer .formGroup input,
.contactUsContainer .formGroup textarea {
    width: calc(100% - 26px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline: none;
}
.contactUsContainer .formGroup input:focus,
.contactUsContainer .formGroup textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
.contactUsContainer .formGroup textarea {
    resize: vertical;
    min-height: 120px;
}
.contactUsContainer .btnSubmitContactForm {
    width: 100%;
    padding: 14px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contactUsContainer .btnSubmitContactForm:hover {
    background-color: #357abd;
}
.contactUsContainer .btnSubmitContactForm:active {
    background-color: #2a629c;
}
.contactUsContainer #statusMessage {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    display: none;
}
.contactUsContainer .success { color: #28a745; }
.contactUsContainer .error { color: #dc3545; }
