.greeting_content {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

@media (max-width: 768px) {
    .greeting_content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

.greeting_image {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.greeting_image img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image_caption {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
    text-align: center;
    line-height: 1.5;
}