/* HelpDesk page content container */
.helpdesk-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header section */
.helpdesk-header {
    text-align: center;
    margin-bottom: 3rem;

}

.helpdesk-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.helpdesk-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.6;
}

/* Q&A Section */
.qa-section {
    margin-bottom: 3rem;
}

.qa-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.qa-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.qa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qa-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.qa-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qa-icon i {
    font-size: 18px;
    color: white;
}

.qa-question h3 {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.qa-answer {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-icon i {
    font-size: 24px;
    color: white;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin: 0;
    font-size: 0.90rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .qa-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .helpdesk-content {
        padding: 1rem;
    }
    
    .helpdesk-header h1 {
        font-size: 2.5rem;
    }
    
    .helpdesk-header p {
        font-size: 1.1rem;
    }
    
    .qa-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .helpdesk-header h1 {
        font-size: 2rem;
    }
    
    .qa-item {
        padding: 1.2rem;
    }
    
    .qa-question h3 {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

