
        /* Reset some default browser styles */
        body, h1, h2, p {
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            background-color: #f4f4f4;
            color: #333;
            padding: 20px;
        }
        .container {
            max-width: 1200px; /* Set a maximum width for the content */
            margin: 0 auto; /* Center the container horizontally */
            padding: 20px; /* Add padding for inner content */
        }
        header {
            background-color: #D80C18;
            color: #fff;
            padding: 30px;
            text-align: center;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        header h1 {
            font-size: 2.5em; /* Increased font size for main title */
            font-weight: bold;
            margin-bottom: 10px;
        }
        header p {
            font-size: 1.3em;
            font-weight: normal;
        }
        section {
            background-color: #fff;
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        section h2 {
            color: #D80C18;
            font-size: 2em; /* Increased font size for section headings */
            font-weight: bold;
            margin-bottom: 15px;
        }
        section img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        section p {
            font-size: 1.1em; /* Slightly larger font size for body text */
            color: #555; /* Softer color for body text for contrast */
            margin-bottom: 15px;
        }
        footer {
            text-align: center;
            padding: 15px 0;
            background-color: #333;
            color: #fff;
            border-radius: 5px;
            margin-top: 20px;
        }
        footer a {
            color: #D80C18;
            text-decoration: none;
            font-weight: bold;
        }
        footer a:hover {
            text-decoration: underline;
        }
    