body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.title {
    color: #2c4f98;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.text {
    flex: 1;
}

.description {
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-container {
    flex: 1;
    text-align: center;
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
