body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    font-size: 20px;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top-section {
    display: flex;
    gap: 20px;
    padding: 50px 200px;
	align-items: stretch;
}

.image-column, .text-column {
    flex: 1;
}

.text-column {
    display: flex;
    flex-direction: column;
	margin-left: 40px;
}

.image-column img {
    max-width: 100%;
    height: 100%;
	object-fit: cover;
}

h2 {
    color: #800;
    font-size: 26px;
    text-align: right;
	margin-top: 50px;
}

h3 {
    color: #800;
    font-size: 24px;
}

.text-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content p {
    text-align: justify;
    hyphens: auto;
    font-size: 20px;
    margin: 0;
	
}

.text-column p, .bottom-section p {
    text-align: justify;
    hyphens: auto;
    font-size: 20px;
    margin: 0;
}

.text-column p {
    text-align: justify;
    hyphens: auto;
    font-size: 22px;
    margin: 20px 20px;
}

.separator {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 20px 20px;
}

.highlight {
    color: #800;
    font-weight: bold;
}

.bottom-section {
    padding: 20px 200px 50px;
}

@media (max-width: 768px) {
    .top-section {
        flex-direction: column;
    }
    
    .bottom-section {
        padding: 0 20px 20px;
    }
}