
        /* Global Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

        header {
            background-color: #0044A6;
            color: white;
            padding: 20px;
            text-align: center;
        }

        h1 {
            margin: 0;
            font-size: 28px;
        }

        h2 {
            font-size: 24px;
            margin-top: 20px;
        }

        /* Main Content Styles */
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
        }

        .intro-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        .intro-section h2 {
            color: #0044A6;
            font-weight: bold;
        }

        .intro-section p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        .advantages {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .advantage {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin: 0 10px;
        }

        .advantage i {
            font-size: 40px;
            color: #0044A6;
            margin-bottom: 15px;
        }

        .advantage h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }

        .advantage p {
            font-size: 14px;
            color: #555;
        }

        /* Application Form Styles */
        .form-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .form-section h2 {
            text-align: center;
            color: #0044A6;
            font-weight: bold;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        input, textarea {
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        textarea {
            resize: vertical;
        }

        button {
            padding: 12px;
            background-color: #0044A6;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #003279;
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            margin-top: 40px;
        }

    