        /* Styling pentru secțiunea ghid cu zigzag */
        #ghid-calculator-rca {
            background-color: #fff;
            overflow: hidden;
        }

        #ghid-calculator-rca .e-guide-step {
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        #ghid-calculator-rca .e-guide-step:last-of-type {
            border-bottom: none;
        }

        #ghid-calculator-rca .e-illustration-wrapper {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #ghid-calculator-rca .e-illustration-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        #ghid-calculator-rca .e-step-badge {
            box-shadow: 0 4px 15px rgba(233, 185, 62, 0.4);
            transition: transform 0.3s ease;
        }

        #ghid-calculator-rca .e-step-badge:hover {
            transform: scale(1.1);
        }

        /* Conectori zigzag animați */
        #ghid-calculator-rca .e-zigzag-connector path {
            animation: dash 2s ease-in-out infinite;
        }

        @keyframes dash {

            0%,
            100% {
                stroke-dashoffset: 0;
            }

            50% {
                stroke-dashoffset: 24;
            }
        }

        #ghid-calculator-rca .e-info-box ul li {
            margin-bottom: 0.35rem;
        }

        #ghid-calculator-rca .e-info-box ul li:last-child {
            margin-bottom: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            #ghid-calculator-rca .flex-lg-row-reverse {
                flex-direction: column !important;
            }

            #ghid-calculator-rca .e-step-badge {
                width: 44px !important;
                height: 44px !important;
                font-size: 1.25rem !important;
            }

            #ghid-calculator-rca .e-illustration-wrapper {
                min-height: 300px !important;
            }
        }

        /* Radius classes fallback */
        .e-radius-10 {
            border-radius: 10px;
        }

        .e-radius-15 {
            border-radius: 15px;
        }

        .e-radius-20 {
            border-radius: 20px;
        }

        img {
            max-width: 100%;
            display: block;
        }
        .card {
            border-radius: 30px !important;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 89, 76, 0.08);
        }
        /* Carousel Styles */
        .brands-carousel {
            padding: 48px 56px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 0 48px;
        }

        .carousel-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 0;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .brand-card {
            flex: 0 0 280px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 130, 108, 0.12);
            border-radius: 20px;
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .brand-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(51, 51, 51, 0.12);
            border-color: rgba(0, 130, 108, 0.3);
        }

        .brand-logo {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(13, 150, 126, 0.08);
            border-radius: 50%;
            padding-left: 8px;
            padding-right: 8px;
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--brand-dark);
            text-align: center;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 130, 108, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .carousel-button:hover {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: #FFFFFF;
        }

        .carousel-button--prev {
            left: 0;
        }

        .carousel-button--next {
            right: 0;
        }

        @media (max-width: 560px) {
            .brands-carousel {
                padding: 32px 20px;
            }

            .carousel-container {
                padding: 0;
            }

            .carousel-button {
                display: none;
            }

            .brand-card {
                flex: 0 0 240px;
            }

            .rate-table th,
            .rate-table td {
                font-size: 0.85rem;
                padding: 10px 8px;
            }

            .rate-table th {
                font-size: 0.8rem;
                padding: 10px 6px;
            }

            .rate-table caption {
                font-size: 0.9rem;
            }
        }