/* Basic styling for the entire page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container for the entire layout */
.container {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;    /* Center all items horizontally */
}

/* Image styling */
.image-section img {
    display: block;
    max-width: 100%;       /* Image scales down for smaller screens */
    height: auto;
}

/* Text section styling */
.text-section {
    max-width: 800px;      /* Maximum width for the text column */
    padding: 20px;
    margin: 0 auto;        /* Center the text block */
    text-align: center;    /* Center the text inside the block */
}

/* Media queries for larger screens */
@media (min-width: 768px) {
    .text-section {
        padding: 40px;
    }
}
