﻿        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            color: #1e293b;
            line-height: 1.4;
            overflow-x: hidden;
        }

        :root {
            --rippa-blue: #0A5B8C;
            --rippa-blue-light: #2c7cb6;
            --rippa-dark: #0f2b3d;
            --gray-light: #f8fafc;
            --gray-border: #e2e8f0;
            --text-muted: #64748b;
        }

        .filter-panel {
            max-height: calc(100vh - 120px);
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 6px;
            scrollbar-width: thin;
        }

        .filter-panel::-webkit-scrollbar {
            width: 6px;
        }

        .filter-panel::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 6px;
        }

        .filter-panel::-webkit-scrollbar-thumb {
            background: rgba(24, 45, 130, 0.28);
            border-radius: 6px;
        }

        .filter-panel::-webkit-scrollbar-thumb:hover {
            background: rgba(24, 45, 130, 0.45);
        }
        .btn-rippa {
            background-color: var(--rippa-blue);
            color: white;
            border: none;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s;
        }
        p{
            margin: 0;
        }
        .btn-rippa:hover {
            background-color: var(--rippa-blue-light);
            color: white;
        }

        .banner {
            background: url(../images/jxs01.png) no-repeat;
            background-size: 100%;
            border-radius: 32px;
            margin: 40px 0 60px;
            padding: 90px 48px;
            text-align: center;
            color: white;
        }

        .banner h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .banner p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 32px;
            opacity: 0.9;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            text-align: center;
        }

        .section-sub {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 10px;
            font-size: 18px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .rippa-card {
            background: var(--gray-light);
            border-radius: 24px;
            padding: 32px 24px;
            transition: transform 0.2s, box-shadow 0.2s;
            height: 100%;
        }

        .rippa-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.05);
        }
        .supplier-box .card-icon {
            background: white;
            width: 100%;
            height: auto;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .supplier-box .card-icon img{
            width: 100%;
            border-radius: 12px;
        }
        .dealer-partnership .card-icon {
            background: white;
            width: 100%;
            height: auto;
            border-radius: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dealer-partnership .card-icon img{
            border-radius: 12px;
            width: 100%;
        }
        .card-icon {
            background: white;
            width: 72px;
            height: 72px;
            border-radius: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .rippa-card h3 {
            font-size: 22px;
            margin-bottom: 16px;
            font-weight: 600;
            text-align: center;
        }

        .rippa-card p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.5;
            text-align: center;
        }

        .two-col-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .two-col-text ul {
            list-style: none;
            padding: 0;
        }

        .two-col-text li {
            margin-bottom: 14px;
            padding-left: 28px;
            position: relative;
            font-size: 16px;
        }

        .two-col-text li::before {
            content: "✓";
            color: var(--rippa-blue);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .two-col-image {
            background-color: var(--gray-light);
            height: 280px;
            border-radius: 20px;
            background-size: cover;
            background-position: center;
        }

        .profile-section {
            background: var(--gray-light);
            border-radius: 28px;
            padding: 48px;
            margin: 60px 0;
        }

        @media (max-width: 767px) {
            .profile-section {
                padding: 32px 20px;
            }
            .profile-section .row {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 0;
                margin: 0;
                padding-bottom: 16px;
            }
            .profile-section .row::-webkit-scrollbar {
                height: 4px;
            }
            .profile-section .row::-webkit-scrollbar-track {
                background: rgba(0,0,0,0.05);
                border-radius: 2px;
            }
            .profile-section .row::-webkit-scrollbar-thumb {
                background: rgba(0,0,0,0.2);
                border-radius: 2px;
            }
            .profile-section .row > [class*="col-"] {
                flex: 0 0 100%;
                max-width: 100%;
                scroll-snap-align: start;
                padding: 0 8px;
            }
            .profile-card {
                height: auto !important;
            }
        }

        .profile-title {
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
        }

        .profile-sub {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .profile-card {
            background: white;
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            height: 100%;
        }

        .profile-card .icon {
            font-size: 40px;
            width: 80px;
            display: block;
            margin: 16px auto;
            border-radius: 80px;
            overflow: hidden;
        }

        .profile-card h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .profile-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.4;
        }

        .feedback-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
        }
        .feedback-img {
            position: relative;
        }
        .feedback-img::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
            border-radius: 50%;
            box-shadow: 0 2px 12px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.2s;
            pointer-events: none;
        }
        .feedback-card:hover .feedback-img::after {
            opacity: 1;
        }
        .justify-content-center img{
            width: 100%;
        }
        @media (max-width: 767px) {
            .feedback-row {
                flex-wrap: nowrap !important;
                justify-content: flex-start !important;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 16px;
                margin: 0;
            }
            .feedback-row::-webkit-scrollbar {
                height: 4px;
            }
            .feedback-row::-webkit-scrollbar-track {
                background: rgba(0,0,0,0.05);
                border-radius: 2px;
            }
            .feedback-row::-webkit-scrollbar-thumb {
                background: rgba(0,0,0,0.2);
                border-radius: 2px;
            }
            .feedback-row > [class*="col-"] {
                flex: 0 0 100% !important;
                max-width: 100% !important;
                width: 100% !important;
                scroll-snap-align: start;
                padding: 0 8px;
            }
        }

        .feedback-img {
            width: 100%;
            height: auto;
            margin-bottom: 16px;
            background-size: cover;
            background-position: center;
        }
        .feedback-img img{
            width: 100%;
            border-radius: 12px;
        }
        .values-step {
            background: white;
            border-radius: 24px;
            padding: 32px 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            height: 100%;
            border-top: 4px solid var(--rippa-blue);
            transition: transform 0.2s;
        }

        .values-step:hover {
            transform: translateY(-4px);
        }

        .values-step .step-number {
            width: 48px;
            height: 48px;
            background: var(--rippa-blue);
            color: white;
            border-radius: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .values-step h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--rippa-dark);
        }

        .values-step p {
            color: var(--text-muted);
            line-height: 1.5;
        }

        .values-step .quote {
            font-style: italic;
            font-weight: 500;
            color: var(--rippa-blue);
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-border);
        }

        .footer {
            text-align: center;
            padding: 48px 0 32px;
            border-top: 1px solid var(--gray-border);
            color: var(--text-muted);
            font-size: 14px;
        }
        /* FAQ */
        .faq {
            width: 1200px;
            margin: 0 auto;
            background: #fff;
        }

        .faq-item {
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: #1a1a1a !important;
        }

        .faq-question {
            cursor: pointer;
            user-select: none;
            font-size: 19px;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 400;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding: 0 1.5rem;
            font-size: 17px;
        }
        .position-relative{
            font-size: 17px;
        }
        .faq-answer.active {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        @media (max-width: 768px) {
            .banner{
                background-size: 100% 100%;
                margin: 40px 0 0;
            }
            .banner h1 { font-size: 23px; }
            .banner { padding: 10px 24px; }
            .banner p{
                font-size: 18px;
            }
            .rippa-card{
                padding: 10px;
            }
            .faq {
                width: 100%;
            }
            .faq-question {
                font-size: 15px;
            }
        }
