.container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    gap: 10px; /* Adds space between the image and text */
}

.image img {
    width: 120px; /* Makes the image responsive */
    max-width: 200px; /* You can adjust the size as needed */
    height: auto;
    border-radius: 1px;
}

.image_special img {
    width: 165px; /* Makes the image responsive */
    max-width: 200px; /* You can adjust the size as needed */
    height: auto;
    border-radius: 1px;
}

.text {
    flex: 1;
    padding: 2px;
}

.text h2 {
    margin-bottom: 10px;
    color: #333;
}

.text p {
    color: #555;
}
