body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #3c3c3c;
    text-align: left;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    width: 150px;
}

.language-selector select {
    font-size: 1em;
    padding: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    color: #3c3c3c;
}

main {
    display: block;
    width: 100%;
    padding: 0;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.text-section {
    flex: 0 0 60%;
    margin-right: 20px;
}

.image-section {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
}

.text-section h1 {
    font-family: Segoe UI, 'Arial Black', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #3c3c3c;
    line-height: 130%;
}

.text-section p {
    font-size: 1.5em;
    margin-bottom: 20px;
}
.description {
    line-height: 140%;
}

.benefits p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cta-buttons {
    margin-top: 60px;
}

.primary-button {
    background-color: #ff512e;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    color: #ffffff;
    margin-right: 10px;
    border-radius: 8px;
}

.secondary-button {
    background-color: #3c3c3c;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
}
.primary-button {
    display: none;
}

/* Responsive Styles */

@media (min-width: 640px) {
    .text-section h1 {
        font-size: 2.5em;
    }
}

@media (min-width: 768px) {
    .content {
        flex-direction: row;
    }
    .text-section {
        text-align: left;
    }
    .image-section {
        margin-left: 20px;
    }
}

@media (min-width: 1024px) {
    .text-section h1 {
        font-size: 3em;
    }
}

@media (min-width: 1280px) {
    .text-section h1 {
        font-size: 3.5em;
    }
}

@media (min-width: 1536px) {
    .text-section h1 {
        font-size: 4em;
    }
}

@media (max-width: 767px) {
    .content {
        flex-direction: column;
    }
    .text-section {
        flex: 1 0 100%;
        margin-right: 0;
        text-align: left;
    }
    .image-section {
        position: absolute;
        width: 30%;
        padding: 27% 0 0 60%;
        display: none;
    }
    .image-section img {
        width: 100%;
    }
}
