 body {
   font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f3f3f3;
    background-image: url('logo.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
header {
    background-color: #0056b3;
    color: #fff;
    padding: 20px;
    text-align: center;
}
main {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align:justify;
}
h1 {
    color: #ff7f11;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
h2 {
    color: #0056b3;
    margin-bottom: 10px;
}
p {
    line-height: 1.6;
    font-size: 1.2em;
    margin-bottom: 1em;
}
.step {
    margin-bottom: 20px;
}
.step-number {
    background-color: #ff7f11;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 40px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.step-number-text{
    background-color: #ff7f11;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 25%;
    margin-right: 10px;	
}
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #0056b3;
    color: #fff;
    margin-top: 30px;
}
a {
    color: #0056b3;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.logo {
    width: 150px;
    height: 150px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2em;
    margin-bottom: 1em;
}
section {
    margin-bottom: 40px;
}
ul {
    list-style-type: disc;
    margin-left: 20px;
}        

