/* Section Styles */
.section {
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
}

/* Heading Styles */
.section-title {
    margin-top: 0;
    font-size: 1.5em;
    color: #333333;
    border-bottom: 2px solid #eeeeee;
    padding-bottom: 10px;
}

/* Section Content Styles */
.section-content {
    padding: 10px;
}

.section-content p {
    margin-bottom: 10px;
}

.side-by-side {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align items at the start */
}

.half {
    width: 50%;
    box-sizing: border-box;
}

.small {
    width: 30%;
}

.large {
    width: 70%;
}

.main-content {
    padding: 10px 30px;
    height: auto;
    /* Ensures height is determined by the content */
    display: inline-block;
    /* Ensure it respects the content's height */
    vertical-align: top;
}

.visual-content {
    border: 2px solid #cccccc;
    /* Add a subtle border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    /* Increase padding for a better layout */
    position: relative;
    height: auto;
    box-sizing: border-box;
    background-color: #f9f9f9;
    /* Add a light background color */
    border-radius: 8px;
    /* Add rounded corners */
    margin: 10px 0px;
}

/* Emphasized Text */
strong {
    color: #333333;
    font-weight: bold;
}

#apple {
    width: 10em;
    height: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#apple-image {
    width: 75%;
    max-width: 100%;
    /* Ensure the image doesn't overflow the container */
    max-height: 100%;
    /* Ensure the image doesn't overflow the container */
    transition: width 0.1s, height 0.1s;
    background-color: transparent;
}

.sliders {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}