/* ============================================
   Help Pages Stylesheet - SUTUNOE.dk
   ============================================ */

/* ==================== Base Styles ==================== */
.help-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-main-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

/* ==================== Breadcrumb Section ==================== */
.help-breadcrumb {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px 50px;
    position: relative;
    overflow: hidden;
}

.help-breadcrumb::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;
}

.help-breadcrumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.help-breadcrumb h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.help-breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.help-breadcrumb-nav a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-breadcrumb-nav a:hover {
    color: #ffca2c;
    transform: translateY(-2px);
}

.help-breadcrumb-nav span {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.help-breadcrumb-nav .current {
    color: #ffffff;
    font-weight: 600;
}

/* ==================== Help Content Container ==================== */
.help-content {
    max-width: 1200px;
    margin: -30px auto 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.1);
    padding: 50px 40px;
    position: relative;
    z-index: 2;
}

/* ==================== Typography ==================== */
.help-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 4px solid linear-gradient(90deg, #ffc107, #ff9800);
    position: relative;
}

.help-content h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 2px;
}

.help-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.help-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: linear-gradient(180deg, #ffc107, #ff9800);
    border-radius: 3px;
}

.help-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-top: 35px;
    margin-bottom: 15px;
}

.help-content h4,
.help-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin-top: 25px;
    margin-bottom: 12px;
}

.help-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #636e72;
    margin-top: 20px;
    margin-bottom: 10px;
}

.help-content p {
    color: #636e72;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.help-content p.col_light {
    color: #b2bec3;
    font-size: 1rem;
}

/* ==================== Feature Cards Grid ==================== */
.help-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.help-feature-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #ffc107;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.help-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255,193,7,0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,193,7,0.2);
    border-color: #ffc107;
}

.help-feature-card:hover::before {
    opacity: 1;
}

.help-feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.help-feature-card h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.help-feature-card p {
    color: #636e72;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== FAQ Section ==================== */
.help-faq {
    margin: 35px 0;
}

.help-faq-item {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.help-faq-item:hover {
    border-color: #ffc107;
    box-shadow: 0 8px 25px rgba(255,193,7,0.1);
    transform: translateX(5px);
}

.help-faq-question {
    padding: 20px 25px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-faq-question .badge {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.help-faq-question h6 {
    color: #1a1a2e;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.help-faq-answer {
    padding: 20px 25px;
    background: #ffffff;
}

.help-faq-answer p {
    margin: 0;
    color: #636e72;
}

/* ==================== Checklist Styles ==================== */
.help-checklist {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.help-checklist li {
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #636e72;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.help-checklist li:hover {
    background: #e9ecef;
    transform: translateX(10px);
    border-left-color: #ffc107;
}

.help-checklist li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    background: rgba(39,174,96,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-checklist.checklist-danger li::before {
    content: '✗';
    color: #e74c3c;
    background: rgba(231,76,60,0.1);
}

.help-checklist.checklist-info li::before {
    content: 'ℹ';
    color: #3498db;
    background: rgba(52,152,219,0.1);
}

/* ==================== Steps Section ==================== */
.help-steps {
    counter-reset: help-step-counter;
    padding: 0;
    margin: 35px 0;
}

.help-step-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.help-step-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.help-step-item::before {
    counter-increment: help-step-counter;
    content: counter(help-step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(255,193,7,0.3);
}

.help-step-item h6 {
    margin: 0 0 12px 0;
    color: #1a1a2e;
    font-size: 1.15rem;
}

.help-step-item p {
    margin: 0;
    color: #636e72;
}

/* ==================== Info Boxes ==================== */
.help-info-box {
    padding: 25px 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.help-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.help-info-box.info {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    border-left: 5px solid #2196f3;
}

.help-info-box.success {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-left: 5px solid #4caf50;
}

.help-info-box.warning {
    background: linear-gradient(145deg, #fff8e1, #ffecb3);
    border-left: 5px solid #ffc107;
}

.help-info-box.danger {
    background: linear-gradient(145deg, #ffebee, #ffcdd2);
    border-left: 5px solid #f44336;
}

.help-info-box > * {
    position: relative;
    z-index: 1;
}

.help-info-box h6 {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== Contact Section ==================== */
.help-contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.help-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.help-contact > * {
    position: relative;
    z-index: 1;
}

.help-contact .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.help-contact h5 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.help-contact .email {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffc107;
    text-decoration: none;
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,193,7,0.3);
}

.help-contact .email:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,193,7,0.3);
}

.help-contact p {
    color: rgba(255,255,255,0.8);
    margin: 8px 0;
}

/* ==================== Product Categories ==================== */
.help-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.help-product-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-product-item:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,193,7,0.15);
}

.help-product-item .emoji {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.help-product-item h6 {
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* ==================== Security Badges ==================== */
.help-security {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.help-security-badge {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 35px;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.help-security-badge:hover {
    border-color: #27ae60;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    transform: translateY(-5px);
}

.help-security-badge .icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}

.help-security-badge h6 {
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.help-security-badge p {
    color: #636e72;
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== Table Styles ==================== */
.help-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.help-table thead {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.help-table th {
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.help-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #e0e0e0;
    color: #636e72;
}

.help-table tbody tr:hover {
    background: #f8f9fa;
}

.help-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== Payment Methods ==================== */
.help-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.help-payment-method {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.help-payment-method:hover {
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255,193,7,0.15);
    transform: translateY(-3px);
}

.help-payment-method .badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-payment-method h6 {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-payment-method ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-payment-method ul li {
    padding: 8px 0;
    color: #636e72;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-payment-method ul li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
}

/* ==================== Highlight Text ==================== */
.help-highlight {
    background: linear-gradient(145deg, #fff9c4, #fff59d);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.help-highlight-blue {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.help-highlight-green {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* ==================== Footer Note ==================== */
.help-footer-note {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    text-align: center;
}

.help-footer-note .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.help-footer-note h6 {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-footer-note p {
    color: #636e72;
    margin: 0;
    font-style: italic;
    font-size: 1rem;
}

/* ==================== Scenarios ==================== */
.help-scenarios {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.help-scenario {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid;
    transition: all 0.3s ease;
}

.help-scenario.good {
    border-color: #27ae60;
    background: linear-gradient(145deg, #ffffff, #e8f5e9);
}

.help-scenario.bad {
    border-color: #e74c3c;
    background: linear-gradient(145deg, #ffffff, #ffebee);
}

.help-scenario.neutral {
    border-color: #ffc107;
    background: linear-gradient(145deg, #ffffff, #fff8e1);
}

.help-scenario .title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: block;
    font-size: 1rem;
}

.help-scenario p {
    margin: 5px 0;
}

.help-scenario p.col_light {
    margin-left: 15px;
}

/* ==================== Divider ==================== */
.help-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 40px 0;
}

.help-divider-thick {
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800, #ffc107);
    border-radius: 2px;
    margin: 50px 0;
}

/* ==================== GDPR Rights ==================== */
.help-gdpr-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.help-gdpr-right {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.help-gdpr-right:hover {
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(52,152,219,0.15);
    transform: translateY(-3px);
}

.help-gdpr-right .icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.help-gdpr-right h6 {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-gdpr-right p {
    color: #636e72;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== Delivery Locations ==================== */
.help-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.help-location {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-location:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.help-location .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.help-location h6 {
    color: #2d3436;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 992px) {
    .help-content {
        padding: 40px 30px;
    }

    .help-breadcrumb h1 {
        font-size: 2.5rem;
    }

    .help-contact .email {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .help-breadcrumb {
        padding: 40px 20px 30px;
    }

    .help-breadcrumb h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .help-breadcrumb-nav {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .help-content {
        padding: 30px 20px;
        margin-top: -20px;
        border-radius: 15px;
    }

    .help-content h1 {
        font-size: 1.7rem;
    }

    .help-content h2 {
        font-size: 1.5rem;
    }

    .help-content h3 {
        font-size: 1.25rem;
    }

    .help-features,
    .help-faq,
    .help-products,
    .help-payment-methods,
    .help-gdpr-rights {
        grid-template-columns: 1fr;
    }

    .help-security {
        flex-direction: column;
        align-items: center;
    }

    .help-contact {
        padding: 30px 20px;
    }

    .help-contact .email {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    .help-step-item {
        padding-left: 70px;
    }

    .help-step-item::before {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .help-breadcrumb h1 {
        font-size: 1.6rem;
    }

    .help-breadcrumb-nav {
        padding: 8px 15px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .help-content {
        padding: 25px 15px;
    }

    .help-content h1 {
        font-size: 1.5rem;
    }

    .help-content h2 {
        font-size: 1.3rem;
    }

    .help-feature-card,
    .help-product-item,
    .help-security-badge,
    .help-payment-method {
        padding: 20px 15px;
    }

    .help-step-item {
        padding-left: 60px;
    }

    .help-step-item::before {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .help-contact .icon {
        font-size: 2.5rem;
    }

    .help-contact h5 {
        font-size: 1.3rem;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-content > .help-faq-item,
.help-content > .help-features,
.help-content > .help-info-box,
.help-content > h1,
.help-content > h2 {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.help-content > h1 { animation-delay: 0.1s; }
.help-content > h2:nth-child(2) { animation-delay: 0.2s; }
.help-content > h2:nth-child(3) { animation-delay: 0.3s; }
.help-content > h2:nth-child(4) { animation-delay: 0.4s; }
.help-content > h2:nth-child(5) { animation-delay: 0.5s; }
.help-content > .help-faq-item:nth-child(2) { animation-delay: 0.15s; }
.help-content > .help-faq-item:nth-child(3) { animation-delay: 0.25s; }
.help-content > .help-faq-item:nth-child(4) { animation-delay: 0.35s; }
.help-content > .help-faq-item:nth-child(5) { animation-delay: 0.45s; }
.help-content > .help-faq-item:nth-child(6) { animation-delay: 0.55s; }

/* ==================== Custom Scrollbar ==================== */
.help-content::-webkit-scrollbar {
    width: 8px;
}

.help-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.help-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffc107, #ff9800);
    border-radius: 4px;
}

.help-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9800, #f57c00);
}

/* ==================== Print Styles ==================== */
@media print {
    .help-breadcrumb {
        background: white;
        color: black;
    }

    .help-breadcrumb h1 {
        color: black;
        text-shadow: none;
    }

    .help-breadcrumb-nav {
        background: #f0f0f0;
    }

    .help-content {
        box-shadow: none;
        background: white;
    }

    .help-feature-card:hover,
    .help-faq-item:hover,
    .help-product-item:hover {
        transform: none;
        box-shadow: none;
    }

    .help-contact {
        background: white;
        color: black;
        border: 1px solid #000;
    }

    .help-contact::before {
        display: none;
    }
}

/* ==================== Accessibility ==================== */
.help-content a:focus,
.help-content button:focus {
    outline: 3px solid #ffc107;
    outline-offset: 2px;
}

.help-content h1:focus,
.help-content h2:focus,
.help-content h3:focus {
    outline: 2px solid #ffc107;
    outline-offset: 4px;
}

/* ==================== High Contrast Mode ==================== */
@media (prefers-contrast: high) {
    .help-content {
        border: 2px solid #000;
    }

    .help-feature-card,
    .help-faq-item,
    .help-product-item {
        border-width: 3px;
    }
}

/* ==================== Reduced Motion ==================== */
@media (prefers-reduced-motion: reduce) {
    .help-content > *,
    .help-feature-card,
    .help-faq-item,
    .help-product-item,
    .help-step-item::before {
        animation: none !important;
        transition: none !important;
    }
}

/* ==================== Dark Mode Support ==================== */
@media (prefers-color-scheme: dark) {
    .help-content {
        background: #1a1a2e;
        color: #e0e0e0;
    }

    .help-content h1,
    .help-content h2,
    .help-content h3,
    .help-content h4,
    .help-content h5,
    .help-content h6 {
        color: #ffffff;
    }

    .help-content p,
    .help-content p.col_light {
        color: #b0b0b0;
    }

    .help-feature-card,
    .help-faq-item,
    .help-product-item,
    .help-payment-method {
        background: #252542;
        border-color: #3a3a5a;
    }

    .help-checklist li {
        background: #252542;
    }

    .help-step-item {
        border-color: #3a3a5a;
    }
}

/* ==================== Smooth Scrolling ==================== */
html {
    scroll-behavior: smooth;
}

.help-content {
    scroll-margin-top: 80px;
}