body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
    font-family: Arial, sans-serif;
    padding: 20px;
    margin: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.image-content {
    flex: 1;
    text-align: right;
    min-width: 300px;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 26px;
    font-weight: bold;
    text-align: start;
}

span {
    color: red;
}

p {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}

.contact a {
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.bold-text {
    font-weight: bold;
}

@media (max-width: 768px) {
    body {
        height: auto;
    }
    .container {
        flex-direction: column;
        text-align: center;
    }
    .image-content {
        text-align: center;
        margin-top: 20px;
    }
    p {
        text-align: start;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
}