<style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }

        /* Header */
        header {
            background-color: #031b57;
            padding: 0px;
            text-align: center;
        }

        header h1 {
            color: #ffffff;
            font-size: 36px;
            margin-right: 20px;
        }

        /* Estilo para alinhar o logotipo e o título na mesma linha */
        .header {
            display: flex;
            flex-direction: column;
            align-items: center; /* Alinha verticalmente no centro */
            text-align: center;
        }

        /* Estilo do logotipo */
        .header img {
            width: 300px; /* Tamanho do logotipo */
            height: auto; /* Mantém a proporção */
            margin-top: 50px; /* Espaço entre o logotipo e o título */
        }

        /* Estilo do contêiner de texto */
        .header .text-container {
            text-align: center; /* Alinha o texto à direita */
        }

        
        /* Main Content */
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .logo img {
            max-width: 150px;
            margin-bottom: 5px;
        }

        .section {
            padding: 60px 0;
            text-align: center;
        }

        h2 {
            font-size: 30px;
            color: #1b2a49;
            margin-bottom: 20px;
        }

        p {
            text-align: justify;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: #666;
        }

        .highlighted-paragraph {
            color: #fff; /* Cor diferente */
            
        }

        /* Services Section */
        .services {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .service-item {
            flex: 1;
            min-width: 250px;
            margin: 20px;
            padding: 20px;
            background-color: #031b57;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .service-item h3 {
            font-size: 24px;
            color: #fff;
            margin-bottom: 15px;
        }

        /* Form Section */
        form {
            background-color: #031b57;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        form label {
            text-align: left;
            display: block;
            font-weight: bold;
            margin: 10px 0 5px;
            color: #fff;
        }

        form input, form textarea, form select {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 16px;
        }

        form button {
            background-color: #fcbe21;
            color: #fff;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
        }

        form button:hover {
            background-color: #2c3e73;
        }

        /* Footer */
        footer {
            background-color: #031b57;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        footer p {
            margin: 0;
        }
    </style>