   .application-section {
            background: #fff;
            padding: 60px 0 50px 0;
            text-align: justify;
        }
        .application-section h2 { font-size: 2rem; margin-bottom: 25px; }
        .application-form {
          /*   max-width: 420px; */
            margin: 0 auto;
            background: #f7f8fa;
            padding: 35px 30px;
            border-radius: 14px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 70%;
        }
        .application-form input, .application-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 18px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
            .application-form button {
                background: #B4181E;
                color: #fff;
                border: none;
                border-radius: 20px;
                padding: 12px 35px;
                font-size: 1rem;
                cursor: pointer;
            }
        .application-form button:hover { background: #003d80; }
        .faq-section {
            background: #f7f8fa;
            padding: 60px 0 50px 0;
        }
        .faq-section h2 { text-align: justify; font-size: 2rem; margin-bottom: 35px; }
        .faq-list {
            max-width: 700px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 10px;
            margin-bottom: 18px;
            padding: 22px 26px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .faq-item h4 { margin: 0 0 8px 0; font-size: 1.1rem; }
        .faq-item p { margin: 0; color: #444; }