body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f4f8;  /* Very pale blue background */
}

/* Header styles */
header {
    background-color: transparent;  /* Remove header background */
    color: #333;  /* Dark text color */
    padding: 1rem;
}

header h1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.text-content {
    flex: 2;  /* Changed from 2 to 1 to give more space to image */
}

.image-container {
    flex: 1;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    width: 300px;
    display: flex;
    justify-content: flex-end;  /* Right align the image */
}

.image-container img {

    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;  /* Keep rounded corners */
    border: none;  /* Remove any borders */
}

ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

