:root {
    --primary: #0d6efd;
    --primary-light: #3d8bfd;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --success: #198754;
    --light-bg: #f8fafc;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-light: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(13, 110, 253, 0.02));
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--light-bg);
    color: #334155;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
}

/* Header Styling */
.page-header {
    margin-bottom: 40px;
    padding: 40px 30px;
    background: var(--gradient-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
    }

    .page-header h1 {
        color: var(--primary);
        font-weight: 400;
        margin-bottom: 15px;
    }

    .page-header p {
        color: var(--secondary);
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

/* Tab Navigation */
.tab-nav-container {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.nav-tabs {
    border: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}

    .nav-tabs .nav-link {
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 15px 25px;
        color: var(--secondary);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        background: var(--light-bg);
    }

        .nav-tabs .nav-link:hover {
            border-color: var(--primary-light);
            color: var(--primary);
            background: white;
            transform: translateY(-2px);
        }

        .nav-tabs .nav-link.active {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
        }

        .nav-tabs .nav-link i {
            font-size: 1.2rem;
        }

/* Tab Content */
.tab-content-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-pane {
    padding: 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    padding: 30px 30px 20px;
    background: var(--gradient-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .tab-header h2 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.tab-body {
    padding: 30px;
    overflow-y: auto;
}

/* Policy Content Styling */
.policy-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .policy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        padding: 12px 0;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
        }

.info-box {
    background: var(--gradient-light);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

    .step-list li {
        counter-increment: step-counter;
        margin-bottom: 20px;
        padding-left: 40px;
        position: relative;
    }

        .step-list li:before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.method-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .method-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .method-item i {
        font-size: 1.5rem;
        color: var(--primary);
    }

/* Footer */
.footer-legal {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

/* Alert Boxes */
.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.2);
    color: #0f5132;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
    color: #664d03;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #842029;
}

/* Table Styling */
.table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .table thead th {
        background: var(--gradient-light);
        border: none;
        font-weight: 600;
        color: var(--primary);
    }

    .table tbody tr:hover {
        background: rgba(13, 110, 253, 0.05);
    }

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    }

/* Action Buttons */
.action-buttons {
    padding: 20px 30px;
    background: var(--gradient-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Scrollbar Styling */
.tab-body::-webkit-scrollbar {
    width: 8px;
}

.tab-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.tab-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

    .tab-body::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

/* Responsive */
@media (max-width: 768px) {
    .nav-tabs {
        flex-direction: column;
    }

        .nav-tabs .nav-link {
            width: 100%;
            justify-content: center;
        }

    .tab-header, .tab-body {
        padding: 20px;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

        .action-buttons .btn {
            width: 100%;
        }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 20px;
    }

    .tab-header, .tab-body {
        padding: 15px;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
