

:root {
    --primary: #0066cc;
    --primary-dark: #004499;
    --accent: #ff6b35;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border: #ecf0f1;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* Main Content */
.help section {
    margin-bottom: 3rem;
    scroll-margin-top: 80px;
}

.help .container{
    padding: 60px 0;
}

.help section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
}

.help section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.help section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.help ul, ol {

    margin: 1.5rem 0;
    color: var(--text-light);
}

.help li {

    line-height: 1.8;
}

.help h4{
    font-size: 16px;
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Info Box */
.info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box.success {
    border-left-color: var(--success);
}

.info-box.warning {
    border-left-color: var(--warning);
}

/* Highlight Box */
.highlight {
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(255,107,53,0.05) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--accent);
}

.btn-secondary:hover {
    background: #e55a2b;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Table Styles */
.help table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.help th {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.help td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.help tr:nth-child(even) {
    background: var(--light-bg);
}

/* Contact Section */
.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item strong {
    min-width: 120px;
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Page Navigation */
.page-nav {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.page-nav a {
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.page-nav a:hover {
    background: var(--primary);
    color: white;
}

.page-nav a.active {
    background: var(--primary);
    color: white;
}