:root {
            --primary-color: var(--rose);
            --primary-hover: var(--rose-hover);
            --bg-dark: var(--ink);
            --card-bg: var(--surface);
            --card-border: var(--border-2);
            --text-main: var(--text);
            --text-muted: var(--text-sub);
        }

        .container {
            max-width: 1100px;
            width: 90%;
            margin: 0 auto;
            padding: 40px 0;
        }

        .hero {
            text-align: center;
            padding: 60px 0 40px 0;
            border-bottom: 1px solid var(--border-2);
        }
        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--text-main), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 30px auto;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            background: var(--charcoal);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 10px;
        }
        .cta-btn:hover {
            background: #000000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(25, 27, 31, 0.3);
        }

        .section-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin: 50px 0;
        }
        @media (max-width: 768px) {
            .section-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero h1 {
                font-size: 32px;
            }
        }

        .card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        }
        .card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            color: var(--text-main);
            margin-top: 0;
            margin-bottom: 12px;
        }
        .card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .content-section {
            line-height: 1.8;
            font-size: 16px;
            color: var(--text-muted);
            margin: 60px 0;
        }
        .content-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--text-main);
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
        }
        .content-section p {
            margin-bottom: 20px;
        }

        .definition-block {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
            margin: 30px auto 24px auto;
            max-width: 720px;
            text-align: left;
        }
        .definition-block p {
            color: var(--text-muted) !important;
            font-size: 15px !important;
            line-height: 1.65 !important;
            margin: 0 !important;
        }
        .definition-block strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .content-section > p[style] {
            color: var(--text-muted) !important;
        }
        .content-section table {
            border-collapse: separate !important;
            border-spacing: 0 !important;
            background: rgba(255, 255, 255, 0.52) !important;
            border: 1px solid rgba(25, 27, 31, 0.10) !important;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(25, 27, 31, 0.06);
        }
        .content-section thead tr {
            background: rgba(0, 0, 0, 0.03) !important;
            border-bottom: 1px solid rgba(25, 27, 31, 0.12) !important;
        }
        .content-section th {
            color: var(--text-main) !important;
            font-weight: 700 !important;
            letter-spacing: 0;
        }
        .content-section th:nth-child(2) {
            color: var(--rose) !important;
        }
        .content-section tbody tr {
            border-bottom: 1px solid rgba(25, 27, 31, 0.06) !important;
        }
        .content-section tbody tr:nth-child(even) {
            background: rgba(0, 0, 0, 0.012) !important;
        }
        .content-section td {
            color: var(--text-muted) !important;
            border-bottom-color: rgba(25, 27, 31, 0.06) !important;
        }
        .content-section td:first-child {
            color: var(--text-main) !important;
            font-weight: 600 !important;
        }
        .content-section em {
            color: #5f6670;
        }
        .content-section ul[style*="grid"] li {
            background: rgba(255, 255, 255, 0.50) !important;
            border: 1px solid rgba(209, 21, 92, 0.20) !important;
            box-shadow: 0 10px 26px rgba(25, 27, 31, 0.08);
        }
        .content-section ul[style*="grid"] li strong {
            color: #9f0f45 !important;
        }
        .content-section ul[style*="grid"] li span {
            color: var(--text-muted) !important;
        }

        .faq-section {
            margin: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 40px;
        }
        .faq-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
        }
        .faq-item {
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            padding: 20px;
        }
        .faq-question {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin: 0 0 10px 0;
        }
        .faq-answer {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .cta-banner {
            background: linear-gradient(135deg, rgba(209, 21, 92, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
            border: 1px solid rgba(209, 21, 92, 0.3);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        .cta-banner h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            margin-top: 0;
            margin-bottom: 15px;
        }
        .cta-banner p {
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-grid {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 20px 0;
        }
        .info-grid li {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .info-grid li:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(209, 21, 92, 0.2);
        }
        .info-grid li strong {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            color: var(--text-main);
            display: block;
            margin-bottom: 12px;
        }
        .info-grid li span {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            display: block;
        }
