        .credits-section {
            background-color: #f8f9fa;
        }

        .section-title {
            position: relative;
            margin-bottom: 30px;
            font-weight: bold;
            color: #333;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #007bff;
            margin: 15px auto 0;
        }

        .credit-item {
            background: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Make carousel controls more visible */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            opacity: 0.8;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            height: 40px;
            width: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev {
            left: 5px;
        }

        .carousel-control-next {
            right: 5px;
        }

        .carousel-indicators {
            bottom: -40px;
        }

        .carousel-indicators button {
            background-color: #007bff;
        }

        /* RTL support */
        [dir="rtl"] .carousel-control-prev {
            left: auto;
            right: 5px;
        }

        [dir="rtl"] .carousel-control-next {
            right: auto;
            left: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .credit-item {
                height: 150px;
            }
        }

        /* second ads section */
        .advertisement-box {
            background-color: #D5E8FF;
            padding: 60px 40px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            gap: 10px;
        }

        .advertisement-info h3 {
            color: #333;
            font-size: 33px;
            font-weight: 600;
            margin: 0;
        }

        .lightning-icon {
            background-color: #5d68f5;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightning-icon i {
            color: #ffffff;
            font-size: 40px;
        }

        /* first ads section */
        .advertisement-section {
            background-color: #00BF9C;
            padding: 60px 0;
            width: 100%;
            text-align: center;
            margin-bottom: 0;
        }

        .advertisement-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ad-title {
            color: white;
            font-size: 45px;
            font-weight: 600;
            margin: 0;
        }
