/* Troubleshooting Hub Styles */
.troubleshooting-hub {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
}

.troubleshooting-header {
    text-align: center;
    margin-bottom: 40px;
}

.troubleshooting-title {
    color: #1e2a5e;
    font-size: 2rem;
    margin-bottom: 15px;
}

.troubleshooting-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f1f3f5;
}

.accordion-title {
    font-weight: 600;
    color: #1e2a5e;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-icon {
    color: #00a8e8;
}

.accordion-toggle {
    color: #adb5bd;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.accordion-body {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    color: #495057;
    line-height: 1.6;
}

.troubleshooting-steps {
    margin: 0;
    padding-left: 20px;
}

.troubleshooting-steps li {
    margin-bottom: 10px;
}

.troubleshooting-steps li:last-child {
    margin-bottom: 0;
}

.troubleshooting-note {
    margin-top: 15px;
    padding: 10px;
    background-color: #e7f5ff;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #004085;
    border-left: 3px solid #00a8e8;
}
