
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            padding: 20px 0;
            color: #333;
        }

        .header h1 {
            font-size: 40px;
        }

        .content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }

        .text-section {
            flex: 1;
            max-width: 60%;
            margin-right: 20px;
        }

        .text-section h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }

        .text-section p {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
        }

        .image-section {
            flex: 1;
            max-width: 35%;
        }

        .image-section img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
        }

        footer {
            text-align: center;
            padding: 20px 0;
            color: #777;
        }
    