 body {
            background-color: #456990;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }

        .container {
            max-width: 1112px;
            width: 100%;
            height: auto;
            min-height: 660px;
            display: flex;
            flex-direction: row;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .left {
            width: 50%;
            background-color: #E4FDE1;
            padding: 40px;
            font-family: Arial, sans-serif;
            font-size: 18px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
        }

        .right {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #114B5F;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .image {
            max-width: 100%;
            height: auto;
            max-height: 498px;
            border-radius: 8px;
            object-fit: contain;
        }
        
        /* Styling untuk judul */
        .title {
            text-align: center;
            font-size: 54px;
            font-weight: bold;
            color: #333;
            margin-bottom: 0px;
            word-wrap: break-word;
        }
        
        .ayat {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-top: 0px;
            margin-bottom: 20px;
            word-wrap: break-word;
        }

        /* Styling untuk daftar */
        .numbered-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }

        .numbered-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            margin-bottom: 20px;
            word-wrap: break-word;
        }

        /* Bulatan oranye untuk nomor */
        .numbered-list li::before {
            content: counter(list-counter);
            counter-increment: list-counter;
            width: 30px;
            height: 30px;
            min-width: 30px;
            background-color: #e84b39;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            font-weight: bold;
        }

        /* Menyiapkan counter */
        .numbered-list {
            counter-reset: list-counter;
        }

        /* Media Queries for Responsive Design */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
                min-height: auto;
            }
            
            .left, .right {
                width: 100%;
            }
            
            .right {
                padding: 40px;
            }
            
            .image {
                max-height: 400px;
            }
            
            .title {
                font-size: 42px;
            }
            
            .ayat {
                font-size: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .left {
                padding: 30px;
            }
            
            .title {
                font-size: 36px;
            }
            
            .ayat {
                font-size: 18px;
            }
            
            .numbered-list li {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .left {
                padding: 20px;
            }
            
            .right {
                padding: 20px;
            }
            
            .title {
                font-size: 28px;
            }
            
            .ayat {
                font-size: 16px;
            }
            
            .numbered-list li {
                font-size: 14px;
                gap: 10px;
                margin-bottom: 15px;
            }
            
            .numbered-list li::before {
                width: 25px;
                height: 25px;
                min-width: 25px;
                font-size: 14px;
            }
        }