
        body {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }

        .container {
            width: 80%; /* Page displays at 80% of the viewport width */
            margin: 0 auto; /* Centers the container horizontally */
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd; /* Light gray border around the container */
            display: flex;
            border-radius: 8px; /* Rounded corners for the container */
        }

        .sidebar {
            width: 50%; /* Sidebar takes up 50% of the container width */
            padding-right: 30px; /* Increased right padding for wider gap */
            box-sizing: border-box;
            position: relative; /* Position relative for the image placement */
        }

        .content-wrapper {
            width: 40%; /* Content takes up 40% of the container width */
            margin-left: auto;
        }

        .header {
            background-color: #D80C18; /* Red background color */
            color: #fff; /* White text color */
            padding: 20px;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .section {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd; /* Light gray line as separator */
        }

        .section:last-child {
            border-bottom: none; /* Removes the bottom border of the last section */
        }

        .section img {
            width: 200px;
            height: 200px;
            margin-right: 30px; /* Increased right margin for wider gap */
            object-fit: cover;
            border: 1px solid #ddd; /* Light gray border around the image */
            transition: none; /* Disables any transition effects */
        }

        .section-content {
            max-width: calc(100% - 240px); /* Adjusted for the increased image margin */
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .section-text {
            font-size: 16px;
            color: #666;
        }

        .sidebar h2 {
            font-size: 22px;
            color: #D80C18;
            margin-bottom: 20px;
            font-weight: bold; /* Bold text for the main title */
        }

        .sidebar p {
            font-size: 16px;
            color: #333;
            line-height: 1.5;
            text-indent: 20px; /* Added indentation for first line */
        }

        .sidebar .considerations {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
        }

        .sidebar .considerations h3 {
            font-size: 20px;
            color: #D80C18;
            margin-bottom: 10px;
            font-weight: bold; /* Bold text for subheadings */
        }

        .sidebar .considerations ul {
            list-style-type: disc; /* Use bullet points */
            padding-left: 20px;
        }

        .sidebar .considerations li {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .sidebar .bottom-image {
            width: 100%;
            height: auto;
            margin-top: 20px;
            border: 1px solid #ddd; /* Light gray border around the image */
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                width: 100%;
            }

            .sidebar, .content-wrapper {
                width: 100%;
                padding-right: 0;
                padding-left: 0;
            }

            .content-wrapper {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .section {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .section img {
                width: 100%;
                height: auto;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .section-content {
                max-width: 100%;
            }

            .sidebar p {
                text-align: center;
            }
        }
    