/* Content Container */
.content-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Centered Text */
.center-text {
    text-align: center;
    margin-bottom: 20px;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Keep the text frame wider on large screens */
    gap: 20px;
}

.text-frame {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-frame {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.image-space {
    height: 20px;
}

.image {
    width: 100%;
    height: auto;
}

.large-image {
    max-width: 80%;
}

.content-section {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.left-align {
    text-align: left;
}

/* Responsive Design for Small Screens */
@media screen and (max-width: 800px) {
    .grid-container {
        grid-template-columns: 1fr; /* Make the text frame and image frame equal width on small screens */
    }

    .large-image {
        max-width: 100%;
    }

    .content-container {
        padding: 10px;
    }

    .text-frame,
    .image-frame {
        width: 100%;
    }
}
