
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #d80c18;
            color: white;
            text-align: center;
            padding: 50px 20px;
        }
        header h1 {
            font-size: 40px;
            margin: 0;
        }
        .container {
            width: 80%;
            margin: auto;
            padding: 20px;
            background-color: white;
        }
        .intro-text {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        .intro-text div {
            width: 48%;
        }
        .intro-text img {
            width: 100%;
            border-radius: 8px;
        }
        .content-section {
            margin: 40px 0;
        }
        .content-section h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }
        .content-section p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .content-section ul {
            list-style-type: square;
            font-size: 16px;
            color: #666;
            margin-left: 20px;
        }
        .content-section ul li {
            margin-bottom: 10px;
        }
        .cta-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #d80c18;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            margin-top: 20px;
        }
        .cta-button:hover {
            background-color: #a60a14;
        }
        footer {
            background-color: #d80c18;
            color: white;
            text-align: center;
            padding: 20px 0;
        }
    