.container1 {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.application-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.application-form h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.application-form p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.application-form h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #555;
}

.application-form ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 1em;
}

.application-form ul li {
    margin-bottom: 10px;
}

.benefits {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.benefits ul {
    list-style-type: none;
    padding-left: 0;
}

.benefits li {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.benefits li::before {
    content: '\2022'; /* Bullet point */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    color: #4CAF50;
}



@media (max-width: 480px) {
    .application-form h1 {
        font-size: 1.8em;
    }

    .application-form h2 {
        font-size: 1.4em;
    }

    .benefits h2 {
        font-size: 1.4em;
    }

    footer {
        font-size: 0.8em;
    }
}

/* 添加表单样式 */
.aide-application-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.aide-application-form h2 {
    font-size: 2em;
    color: #4CAF50;
    margin-bottom: 20px;
}

.aide-application-form .form-group {
    margin-bottom: 20px;
}

.aide-application-form label {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.aide-application-form input, .aide-application-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.aide-application-form input:focus, .aide-application-form textarea:focus {
    border-color: #4CAF50;
}

.aide-application-form textarea {
    resize: vertical;
}

.aide-application-form button.submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.aide-application-form button.submit-btn:hover {
    background-color: #388e3c;
}

/* 适配手机的表单样式 */
@media (max-width: 768px) {
    .aide-application-form {
        padding: 20px;
    }

    .aide-application-form h2 {
        font-size: 1.8em;
    }

    .aide-application-form .form-group {
        margin-bottom: 15px;
    }

    .aide-application-form button.submit-btn {
        width: auto; /* Adjust width dynamically */
        margin-left: 0; /* Align button to the left */
    }
}

.option-row div {
    display: flex;
    align-items: center;
    flex-basis: 10%;  /* Allows up to 4 items per row */
  }
  
  .option-row input {
    margin-right: 8px;
  }

  .option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;  /* Space between options */
    border: 2px solid #ddd;  /* Add border around each option */
    border-radius: 8px;  /* Rounded corners */
  }
  
  .option-row div {
    display: flex;
    align-items: center;
    flex-basis: 22%;  /* Allows up to 4 items per row */
  }
  
  .option-row input {
    margin-right: 8px;
  }