/* Reset some basic styles */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-decoration: none;
}

html, body {
    font-family: 'Poppins', sans-serif; /* Updated to use Poppins Light */
    color: #333;
    background-color: #fff; /* Ensure the entire background is white */
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
}

header img {
    max-width: 400px; /* Adjusted logo size */
    cursor: pointer; /* Cursor changes to pointer for logo */
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

header nav ul li a {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase; /* Change menu items to all caps */
    text-decoration: underline; /* Underline menu items */
}

main {
    max-width: 1500px; /* Increased max-width */
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
}

main p, main ul, main li, main blockquote {
    margin-bottom: 20px;
    font-size: 20px; /* Increased font size for body paragraphs, list items, and blockquotes */
    line-height: 1.6;
}

main ul {
    padding-left: 20px; /* Indent bullet points */
    list-style-type: disc; /* Standard bullet points */
}

blockquote {
    font-family: 'Georgia', serif; /* Change font family for blockquotes */
    font-style: italic; /* Italicize blockquotes */
    font-size: 26px; /* Adjust font size for blockquotes */
    color: #555; /* Adjust color for blockquotes */
    padding-left: 20px; /* Add padding to the left */
}

.medical-disclaimer {
    font-size: 16px; /* Smaller font size for medical disclaimer */
    font-style: italic; /* Italicize medical disclaimer */
    color: #555; /* Softer color for medical disclaimer */
}

.medical-disclaimer-heading {
    font-size: 22px; /* Larger font size for the heading */
    font-weight: bold; /* Bold font for the heading */
    color: #333; /* Darker color for the heading */
    font-style: italic; /* Ensure the heading itself is italic */
}

h1 {
    font-size: 36px; /* Define font size for H1 */
    font-weight: bold; /* Bold font for H1 */
    color: #333; /* Ensure consistent color for H1 */
}

h2 {
    font-size: 32px; /* Increased font size for H2 */
    font-weight: bold; /* Bold font for H2 */
}

h3 {
    font-size: 26px; /* Increased font size for H3 */
    font-weight: bold; /* Bold font for H3 */
}

.image-container {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 20px;
    overflow: hidden; /* Ensure the container hides overflow */
}

.image-container img {
    width: 100%;
    max-height: 560px; /* Set maximum height */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image scales correctly */
}

.image-container .centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust width to 90% of the image */
    padding: 10px;
    font-size: 48px; /* Set font size to 48px */
    color: white; /* White text color */
    text-align: center;
}

.content-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.left-column, .right-column {
    flex: 1;
}

.right-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.right-column img {
    max-width: 400px; /* Maximum width of the image */
    min-width: 200px; /* Minimum width of the image */
    width: auto; /* Ensure it scales with the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image scales correctly */
    margin-bottom: 20px; /* Add bottom margin */
    margin-left: auto;
    margin-right: 300px; /* Add 300px margin to the right to create spacing */
    align-self: flex-start; /* Align the image to the top */
}

@media (min-width: 801px) {
    .right-column img {
        margin-top: 100px; /* Add 100px margin-top for larger screens */
    }
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .right-column img {
        margin-right: 200px; /* Reduce margin for smaller screens */
    }
}

@media (max-width: 1000px) {
    .right-column img {
        margin-right: 100px; /* Reduce margin for smaller screens */
        margin-top: 20px; /* Reduce margin-top on smaller screens */
    }
}

@media (max-width: 800px) {
    body {
        padding: 10px;
    }
    header nav ul {
        flex-direction: column;
    }
    header nav ul li a {
        font-size: 16px;
        padding: 8px 16px;
    }
    main {
        padding: 10px;
    }
    .content-columns {
        flex-direction: column-reverse;
    }
    .right-column img {
        margin-right: auto; /* Remove the right margin on smaller screens */
        margin-top: 0; /* Remove margin-top on smaller screens */
    }
}
