.testimoni-section {
                            padding: 60px 20px;
                            background: linear-gradient(135deg, #0E0820, #0E0820);
                            text-align: center;
                            margin: 40px 0;
                        }

                        .testimoni-section h2 {
                            color: #B9BBFF;
                            font-size: 36px;
                            margin-bottom: 20px;
                            font-weight: 800;
                            text-shadow: 0 0 15px #B9BBFF;
                            letter-spacing: 1px;
                        }

                        .testimoni-section>p {
                            color: #ffffff;
                            font-size: 18px;
                            margin-bottom: 40px;
                            max-width: 900px;
                            margin-left: auto;
                            margin-right: auto;
                        }


                        .testimoni-grid {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                            gap: 30px;
                            max-width: 1200px;
                            margin: 0 auto;
                        }


                        .testimoni-card {
                            background: #171033;
                            border: 2px solid #B9BBFF;
                            border-radius: 16px;
                            padding: 25px;
                            box-shadow: 0 0 20px rgba(169, 171, 255, 0.45);
                            transition: transform 0.3s ease, box-shadow 0.3s ease;
                        }

                        .testimoni-card:hover {
                            transform: translateY(-10px);
                            box-shadow: 0 0 30px rgba(169, 171, 255, 0.45);
                        }

                        .rating-stars {
                            color: #B9BBFF;
                            font-size: 28px;
                            margin-bottom: 15px;
                            letter-spacing: 5px;
                        }

                        .testimoni-card blockquote {
                            color: #ffffff;
                            font-size: 16px;
                            line-height: 1.6;
                            margin: 0 0 20px 0;
                            font-style: italic;
                        }

                        .testimoni-author {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            color: #B9BBFF;
                            font-size: 15px;
                            font-weight: bold;
                        }

                        .testimoni-author small {
                            color: #A5A6D8;
                            font-weight: normal;
                            font-size: 14px;
                        }

                        .testimoni-closing {
                            color: #B9BBFF;
                            font-size: 20px;
                            margin-top: 50px;
                            font-style: italic;
                            text-align: justify;
                        }

                        @media (max-width: 768px) {
                            .testimoni-section h2 {
                                font-size: 30px;
                            }

                            .testimoni-grid {
                                grid-template-columns: 1fr;
                            }
                        }
