        :root {
            --soprolo-bg: #f5f5f7;
            --soprolo-text: #1d1d1f;
            --soprolo-secondary: #86868b;
            --soprolo-blue: #0071e3;
            --soprolo-border: rgba(0, 0, 0, 0.08);
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--soprolo-bg);
            color: var(--soprolo-text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            scroll-behavior: smooth;
        }

        nav {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 0.5px solid var(--soprolo-border);
        }

        nav a {
            color: var(--soprolo-text);
            text-decoration: none;
            font-size: 12px;
            margin: 0 22px;
            font-weight: 400;
            opacity: 0.8;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 20px 20px 20px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s var(--ease);
        }

        .reveal.active {
            opacity: 1;
        }

        .hero {
            padding: 20px 0 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 50px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        /* FAQs */
        .faq-item {
            background: white;
            border-radius: 40px;
            padding: 24px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: 0.3s var(--ease);
            border: 1px solid transparent;
        }

        .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: 0.4s var(--ease);
            color: var(--soprolo-secondary);
            font-size: 15px;
        }

        .faq-item.open .faq-content {
            max-height: 200px;
            padding-top: 15px;
        }

        .faq-item i {
            transition: 0.3s var(--ease);
            color: var(--soprolo-secondary);
        }

        .faq-item.open i {
            transform: rotate(45deg);
            color: var(--soprolo-text);
        }

        /* reviews Cards */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .community-reviews-cards {
            background: #fff;
            padding: 30px;
            border-radius: 24px;
            border: 1px solid var(--soprolo-border);
            transition: 0.4s;
        }

        .user-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .user-img-container {
            width: 44px;
            height: 44px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-img-container img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .user-img-container i {
            font-size: 40px;
            color: #d2d2d7;
        }

        .user-meta {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-weight: 700;
            font-size: 16px;
        }

        .user-email {
            font-size: 12px;
            color: var(--soprolo-secondary);
            margin-top: -2px;
        }

        .stars {
            color: #ff9500;
            font-size: 12px;
            margin-bottom: 10px;
        }


        /* Privacy Policy Specific Styles */
        .privacy-section {
            padding: 35px 10px;
            border-top: 1px solid var(--soprolo-border);
        }

        .privacy-layout {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }

        .privacy-info {
            flex: 1;
            max-width: 600px;
        }

        .privacy-info h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .privacy-info .last-updated {
            font-size: 14px;
            color: var(--soprolo-secondary);
            margin-bottom: 40px;
            display: block;
        }

        .privacy-info p {
            color: #424245;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .privacy-info h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .privacy-info ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 25px;
        }

        .privacy-info li {
            position: relative;
            padding-left: 20px;
            color: #424245;
            font-size: 15px;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .privacy-info li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--soprolo-text);
            font-weight: bold;
        }

        .privacy-visual {
            flex: 0.8;
            display: flex;
            justify-content: flex-end;
        }

        .privacy-visual img {
            width: 100%;
            max-width: 480px;
            height: auto;
        }

        .header-combined {
            padding-top: 20px;
            /* Space below fixed nav */
            padding-bottom: 40px;
            position: relative;
            text-align: center;
        }

        .back-wrapper {
            display: flex;
            justify-content: flex-start;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            color: var(--soprolo-blue);
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            gap: 6px;
            transition: 0.3s var(--ease);
            cursor: pointer;
            z-index: 10;
        }

        .back-btn:hover {

            transform: translateX(-4px);
            color: #0080ff;
        }

        .hero-content h1 {
            font-size: 45px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--soprolo-text);
        }

        /* Fix Hero padding since it's now combined */
        .hero {
            padding: 0;
        }

        footer {
            text-align: center;
            padding: 60px;
            font-size: 12px;
            color: var(--soprolo-secondary);
            border-top: 1px solid var(--soprolo-border);
        }

        @media (max-width: 768px) {
            .header-combined {
                padding-top: 20px;
                padding-bottom: 0;
            }

            .hero-content h1 {
                font-size: 30px;
            }

            .back-wrapper {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 900px) {
            .soprolo-feedback-card {
                grid-template-columns: 1fr;
            }

            .card-left {
                border-right: none;
                border-bottom: 1px solid var(--soprolo-border);
                padding: 20px;
            }

            .card-right {
                padding: 20px;
            }

            .privacy-layout {
                flex-direction: column-reverse;
            }

            .privacy-visual {
                justify-content: center;
                width: 100%;
                margin-top: 40px;
            }

            .feedback-section {
                padding: 20px 0 10px 0
            }

            .hero h1 {
                font-size: 32px;
            }
        }