.troubleshooting-section {
    margin-top: 3rem;
}

.troubleshooting-section h2 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #333;
}

.troubleshooting-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.troubleshooting-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.troubleshooting-card:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.troubleshooting-card i {
    font-size: 3rem;
    color: var(--gradient-primary); /* Green accent */
    margin-bottom: 1rem;
}

.troubleshooting-card h3 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 0.5rem;
}

.troubleshooting-card p {
    font-size: 1rem;
    color: var(--text-secondary); /* Secondary text color */
    line-height: 1.6;
}

.contact-support-section {
    margin-top: 3rem;
    text-align: center;
}

.contact-support-section h2 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-support-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.contact-option-card i {
    font-size: 3rem;
    color: var(--gradient-primary); /* Accent color */
    margin-bottom: 1rem;
}

.contact-option-card h3 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    font-size: 1rem;
    color: var(--text-secondary); /* Secondary text color */
}

.contact-option-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary); /* Secondary text color */
    margin-top: 0.5rem;
}
