body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f946;
}

.container-how {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff65;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    font-size: 2em;
    color: #333;
}

.text-content p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.text-content .button {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #002060;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.card-how {
    width: 45%;
    background-color: #f7f7f7;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-how img {
    width: 100%;
    border-bottom: 5px solid #002060;
}

.card-content {
    padding: 5px;
}

.card-content h3 {
    font-size: 1.5em;
    margin: 0;
    color: #333;
}

.card-content p {
    margin: 10px 0;
    color: #555;
    line-height: 1.5;
}