.container {
    max-width: 1200px;
    background-color: white;
    margin: 40px auto;
    display: flex;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.text-section {
    width: 50%;
    padding: 40px;
}

.text-section h2 {
    color: #d33600;
    font-size: 24px;
    line-height: 1.5;
}

.text-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
    color: #333;
}

.text-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-family: "Lato", sans-serif;
}

.text-section ul li a {
    font-family: "Lato", sans-serif;
    text-decoration: none;
    color: #d33600;
    font-weight: bold;
}

.text-section ul li a:hover {
    text-decoration: underline;
}

.container .cta-button {
    display: inline-block;
    background-color: #2583e8;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    gap: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #b02b00;
}

.image-section {
    width: 50%;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.cta-section {
    font-family: "Gemunu Libre", sans-serif;
    width: 100%;
    background: linear-gradient(to right, #e5e4e2 30%,#5094cf, #2583e8 70%);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2583e8;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    max-width: 1200px;
    margin: 40px auto;
}

.cta-button {
    font-family: "Gemunu Libre", sans-serif;
    background-color: white;
    color: #2583e8;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px 6px 30px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f5f5f5;
    color: #2583e8;
}

.cta-button span {
    font-size: 18px;
}


p {

    font-family: "Lato", sans-serif;

}