    /* Page Header */
    .page-header {
        background: var(--gradient-hero);
        padding: 4rem 0 3rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }

    .page-header .container {
        position: relative;
        z-index: 1;
    }

    .page-header h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: #fff;
    }

    .page-header .lead {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.85);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .page-header .badge-trust {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-full);
        color: #fff;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    /* Main Content Card */
    .page-content {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-sm);
    }

    .page-content h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 3px solid var(--accent);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--secondary);
    }

    .page-content h2:first-child {
        margin-top: 0;
    }

    .page-content h2 i {
        color: var(--primary);
        font-size: 1.25rem;
    }

    .page-content h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--secondary-light);
    }

    .page-content p {
        line-height: 1.8;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

    .page-content ul, .page-content ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .page-content li {
        line-height: 1.8;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
    }

    .page-content strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    .page-content a {
        color: var(--primary-dark);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: var(--transition-fast);
    }

    .page-content a:hover {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    /* Info Boxes */
    .info-box {
        background: var(--bg-light);
        border-left: 4px solid var(--primary);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 0;
    }

    .info-box.success {
        border-color: var(--success);
        background: rgba(143, 188, 143, 0.1);
    }

    .info-box.warning {
        border-color: var(--warning);
        background: rgba(232, 200, 124, 0.1);
    }

    .info-box.primary {
        border-color: var(--primary);
        background: rgba(124, 156, 181, 0.1);
    }

    .info-box.danger {
        border-color: var(--danger);
        background: rgba(212, 165, 165, 0.1);
    }

    .info-box h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
    }

    .info-box.success h4 { color: var(--success); }
    .info-box.warning h4 { color: #c9a227; }
    .info-box.primary h4 { color: var(--primary-dark); }
    .info-box.danger h4 { color: #b37373; }

    .info-box p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    /* Guarantee Cards */
    .guarantee-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .guarantee-card {
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        text-align: center;
        transition: var(--transition-base);
    }

    .guarantee-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-light);
    }

    .guarantee-card .icon {
        width: 56px;
        height: 56px;
        background: var(--gradient-primary);
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .guarantee-card .icon i {
        font-size: 1.5rem;
        color: #fff;
    }

    .guarantee-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--secondary);
    }

    .guarantee-card p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 0;
    }

    /* FAQ */
    .faq-item {
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        overflow: hidden;
        transition: var(--transition-base);
    }

    .faq-item:hover {
        border-color: var(--primary-light);
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition-fast);
    }

    .faq-question:hover {
        color: var(--primary-dark);
    }

    .faq-question i {
        transition: var(--transition-base);
        color: var(--text-light);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
        max-height: 500px;
    }

    /* Sidebar TOC */
    .toc {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        position: sticky;
        top: 100px;
        box-shadow: var(--shadow-sm);
    }

    .toc h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--border-color);
        color: var(--secondary);
        display: flex;
        align-items: center;
    }

    .toc ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .toc li {
        margin-bottom: 0.5rem;
    }

    .toc a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-secondary);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        transition: var(--transition-fast);
    }

    .toc a:hover {
        background: var(--bg-light);
        color: var(--primary-dark);
    }

    .toc a i {
        font-size: 0.75rem;
        color: var(--primary);
    }

    /* CTA Card */
    .cta-card {
        background: var(--gradient-primary);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .cta-card h3 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .cta-card p {
        color: rgba(255,255,255,0.9);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-card .btn {
        background: #fff;
        color: var(--primary-dark);
        border: none;
        font-weight: 600;
    }

    .cta-card .btn:hover {
        background: var(--bg-light);
    }

    /* Last Update */
    .last-update {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        color: var(--text-light);
        font-size: 0.875rem;
        display: flex;
        align-items: center;
    }

    /* Contact Form */
    .contact-form {
        background: var(--bg-light);
        border-radius: var(--radius-md);
        padding: 2rem;
        margin: 1.5rem 0;
    }

    .contact-form .form-label {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding: 0.75rem 1rem;
        color: var(--text-primary);
        transition: var(--transition-fast);
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(124, 156, 181, 0.15);
        outline: none;
    }

    .contact-form textarea {
        min-height: 150px;
        resize: vertical;
    }

    /* Team Grid */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }

    .team-card {
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 2rem;
        text-align: center;
        transition: var(--transition-base);
    }

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .team-card .avatar {
        width: 100px;
        height: 100px;
        border-radius: var(--radius-full);
        object-fit: cover;
        margin-bottom: 1rem;
        border: 4px solid var(--bg-card);
        box-shadow: var(--shadow-sm);
    }

    .team-card h4 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: var(--secondary);
    }

    .team-card .role {
        color: var(--primary);
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .team-card p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

    .team-card .social-links {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    .team-card .social-links a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-card);
        border-radius: var(--radius-full);
        color: var(--text-secondary);
        transition: var(--transition-fast);
    }

    .team-card .social-links a:hover {
        background: var(--primary);
        color: #fff;
    }

    /* Table styles */
    .page-content table {
        width: 100%;
        margin: 1.5rem 0;
        border-collapse: collapse;
    }

    .page-content table th,
    .page-content table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }

    .page-content table th {
        background: var(--bg-light);
        font-weight: 600;
        color: var(--text-primary);
    }

    .page-content table tr:hover td {
        background: var(--bg-light);
    }

    @media (max-width: 991px) {
        .toc {
            position: relative;
            top: 0;
            margin-bottom: 2rem;
        }

        .page-header {
            padding: 3rem 0 2rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2rem;
        }

        .page-content {
            padding: 1.5rem;
        }
    }
