/* Page-specific styles */
:root {
    --primary-color-rgb: 33, 150, 243; /* Assuming primary color is #2196f3 */
    --border-color-rgb: 230, 230, 230; /* Assuming border color is #e6e6e6 */
    --dark-text: #333333;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.support-section {
    padding: 60px 0;
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
}

.support-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.tab-button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active:after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.support-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(var(--border-color-rgb), 0.1);
}

.support-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.support-card h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.support-card h3:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.support-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--dark-text);
}

.support-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.support-card li {
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
}

.support-card li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.support-card .btn {
    margin-top: 15px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.troubleshooting-item {
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.troubleshooting-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.troubleshooting-question {
    font-weight: 600;
    padding: 20px 25px;
    color: var(--dark-text);
    background-color: rgba(var(--primary-color-rgb), 0.05);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border-radius: 8px 8px 0 0;
}

.troubleshooting-question:before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.troubleshooting-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    margin-left: 10px;
}

.troubleshooting-item:hover .troubleshooting-question {
    color: var(--primary-color);
}

.troubleshooting-item.active .troubleshooting-question {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

.troubleshooting-item.active .troubleshooting-question:after {
    transform: rotate(180deg);
}

.troubleshooting-answer {
    padding: 5px 25px 25px;
    border-top: 1px solid rgba(var(--border-color-rgb), 0.2);
    background-color: white;
    line-height: 1.6;
    color: var(--dark-text);
    border-radius: 0 0 8px 8px;
}

.troubleshooting-answer p {
    margin: 15px 0;
}

.troubleshooting-steps {
    background-color: var(--light-bg);
    padding: 22px 25px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.troubleshooting-steps ol {
    margin: 0;
    padding-left: 0;
    counter-reset: item;
    list-style-type: none;
}

.troubleshooting-steps li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    counter-increment: item;
    display: flex;
    align-items: flex-start;
}

.troubleshooting-steps li:before {
    content: counter(item);
    color: white;
    font-weight: 600;
    background-color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 0.85rem;
}

.troubleshooting-steps li:last-child {
    margin-bottom: 0;
}

/* Add a subtle connecting line between steps */
.troubleshooting-steps li:not(:last-child):after {
    content: '';
    position: absolute;
    left: 11px;
    top: 22px;
    height: calc(100% - 10px);
    width: 2px;
    background-color: rgba(var(--primary-color-rgb), 0.3);
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mr-2 {
    margin-right: 10px;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.community-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.platform-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.platform-card h4 {
    margin-bottom: 10px;
}

.platform-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}