 .container-ds {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                max-width: 1300px;
                margin: 0 auto;
            }

            .content-ds {
                flex: 2;
            }

            .sidebar-ds {
                flex: 1;
                background-color: #f9f9f9;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            .header-ds {
                background-color: #f4f4f4;
                padding: 20px;
                margin-bottom: 20px;
                border: 1px solid #ccc;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

            .header h1 {
                margin: 0;
                font-size: 1.8em;
            }

            .header-ds ul {
                list-style: none;
                padding: 0;
                margin: 10px 0;
            }

            .header-ds ul li {
                margin-bottom: 5px;
            }

            .header-ds ul li i {
                margin-right: 5px;
            }

            .section {
                margin-bottom: 30px;
            }

            .section h2 {
                background-color: #f0f8ff;
                padding: 10px;
                border-left: 5px solid #e02c0d;
                font-size: 1.5em;
                margin-bottom: 15px;
            }

            .section-content {
                display: flex;
                gap: 20px;
                align-items: center;
            }

            .section-content img {
                max-width: 20%;
                border-radius: 10px;
            }

            .section-content .text {
                flex: 1;
                padding-left: 20px;
            }

            .section-content .text h3 {
                margin-top: 0;
                font-size: 1.2em;
                color: #271f94;
            }



            .section-content img:hover {
                transform: scale(1.05);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            }

            .highlight {
                background-color: #0c0752;
                color: white;
                padding: 20px;
                border-radius: 10px;
                margin-bottom: 20px;
            }

            .highlight h2 {
                margin-bottom: 10px;
            }

            .highlight p {
                margin: 5px 0;
            }

            .accordion-btn {
                background-color: #0c0752;
                color: white;
                padding: 10px;
                width: 100%;
                text-align: left;
                border: none;
                cursor: pointer;
                transition: background-color 0.3s ease, transform 0.2s ease;
            }

            .accordion-btn:hover {
                background-color: #520707;
            }

            .accordion-btn:active {
                transform: scale(0.98);
            }

            .accordion-content {
                padding: 10px;
                background-color: #f4f4f4;
                display: none;
                border: 1px solid #ccc;
            }

            .testimoni {
                background-color: #f9f9f9;
                padding: 15px;
                border-left: 5px solid #120b77;
                margin-bottom: 20px;
                font-style: italic;
            }

            .progress-bar {
                margin: 20px 0;
            }

            .bar {
                width: 100%;
                height: 10px;
                background-color: #e9ecef;
                border-radius: 5px;
                overflow: hidden;
            }

            .fill {
                height: 100%;
                background-color: #0c0752;
                width: 0;
                animation: fillBar 1s ease-in-out forwards;
            }

            @keyframes fillBar {
                from {
                    width: 0;
                }

                to {
                    width: 100%;
                }
            }

            @media screen and (max-width: 768px) {
                .container-ds {
                    flex-direction: column;
                }

                .section-content {
                    flex-direction: column;
                }

                .section-content img {
                    max-width: 100%;
                }

                .header-ds h1 {
                    font-size: 1.5em;
                }

                .highlight {
                    padding: 15px;
                }

                .cta-btn {
                    padding: 8px 15px;
                    font-size: 0.9em;
                }

                .accordion-btn {
                    font-size: 0.9em;
                    padding: 8px;
                }
            }

            @media screen and (max-width: 480px) {
                .header h1 {
                    font-size: 1.2em;
                }

                .highlight h2 {
                    font-size: 1em;
                }

                .cta-btn {
                    font-size: 0.8em;
                    padding: 6px 12px;
                }
            }

            .inifo {
                background-color: #0c0752;
                border-top-right-radius: 15px;
                border-bottom-right-radius: 15px;
                color: white;
                padding: 10px 0;
            }

            .keunggulan-list {
                line-height: 1.8;
                margin: 20px;
                font-size: 1rem;
            }

            .keunggulan-list b {
                color: #ff9900;
            }

            .crane-description {
                font-family: Arial, sans-serif;
                font-size: 14px;
                color: #252424;
                line-height: 1.5;
                margin: 20px 0;
                padding: 10px;
                background-color: #f9f9f9;
                border-left: 5px solid #05305f;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                border-radius: 5px;
                text-indent: 10px;
            }

            .tutup {
                font-family: 'Arial', sans-serif;
                background-color: #f9f9f9;
                padding: 20px;
                margin: 20px 0;
                border-radius: 10px;
                border-left: 5px solid #ca3103;
                border-right: 5px solid #ca3103;
                box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            }

            .tutup p {
                font-size: 16px;
                line-height: 1.8;
                color: #444;
                margin-bottom: 15px;
            }

            .tutup .bold-one {
                font-weight: bold;
                color: #05305f;
                text-decoration: underline;
            }

            .tutup .link {
                text-decoration: none;
                color: #05305f;
                font-weight: bold;
                border-bottom: 2px solid transparent;
                transition: color 0.3s ease, border-bottom 0.3s ease;
            }

            .tutup .link:hover {
                color: #05305f;
                border-bottom: 2px solid #05305f;
            }
    