        .banner img {
            width: 100%;
            height: auto;
            display: block;
        }
        .content-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 30px;
            background: #f4f4f4;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .section-title {
            background: #ff7518;
            color: white;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 22px;
            margin-top: 20px;
        }
        .btn-learn-more {
            display: inline-block;
            padding: 10px 15px;
            background: #0056b3;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            margin-top: 10px;
        }
        img.placeholder {
            width: 100%;
            max-height: 400px;
            border-radius: 8px;
            margin: 20px 0;
            opacity:1;
        }
        .image-row {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 20px;
        }
        .image-row img {
            width: 32%;
            height: auto;
            border-radius: 8px;
        }
        .justified-text {
            text-align: left;
            margin: 0 auto;
            max-width: 80%;
        }
        ul {
            list-style-position: inside;
            padding-left: 0;
        }
        @media (max-width: 768px) {
            .image-row {
                flex-direction: column;
                align-items: center;
            }
            .image-row img {
                width: 100%;
            }
        }