* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #192a56;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #fff;
}

.logo img {
    width: 50px;
    height: auto;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}    
.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content .image img {
    max-width: 100%;
    height: auto;
}

.content .text h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content .text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.features {
    background-color: #f9f9f9;
    padding: 50px;
    margin: 20px;
}

.features h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.features li {
    margin-bottom: 10px;
}

.benefits {
    background-color: #fff;
    padding: 50px;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.benefits ul {
    list-style-type: disc;
    padding-left: 20px;
}

.benefits li {
    margin-bottom: 10px;
}

.cta {
    background-color: #f9f9f9;
    padding: 50px;
    margin: 20px;
    text-align: center;
}

.cta h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #192a56;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #0b1440;
}

.footer {
    background-color: #192a56;
    padding: 20px;
    text-align: center;
    color: #fff;
}
