/* Help Page Styles - Matching site design patterns */

.help-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-icon {
    font-size: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 500;
    opacity: 0.95;
}

/* Search Section */
.search-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.help-search {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-search:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

/* Quick Links */
.quick-links-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-links-section h2 {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    color: #333;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(255, 153, 0, 0.3);
    color: white;
}

.quick-link-icon {
    font-size: 2.5rem;
}

.quick-link-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

/* Help Content */
.help-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Help Sections */
.help-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: white;
    font-weight: 600;
}

.section-icon {
    font-size: 2rem;
}

/* Help Topics */
.help-topic {
    border-bottom: 1px solid #eee;
}

.help-topic:last-child {
    border-bottom: none;
}

.topic-header {
    width: 100%;
    padding: 18px 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.topic-header:hover {
    background: #f8f9fa;
}

.topic-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #ff9900;
    font-weight: bold;
}

.topic-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.topic-content > *:first-child {
    margin-top: 0;
    padding-top: 10px;
}

.topic-content > *:last-child {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.topic-content p {
    line-height: 1.6;
    color: #555;
    margin: 10px 0;
}

.topic-content ol,
.topic-content ul {
    line-height: 1.8;
    color: #555;
    margin: 10px 0;
    padding-left: 25px;
}

.topic-content li {
    margin: 8px 0;
}

.topic-content strong {
    color: #333;
    font-weight: 600;
}

.topic-content a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 500;
}

.topic-content a:hover {
    text-decoration: underline;
}

/* Special Content Blocks */
.tip {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.note {
    background: #fff3e0;
    border-left: 4px solid #ff9900;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
}

/* Contact Card */
.contact-card {
    padding: 25px;
}

.contact-card p {
    line-height: 1.6;
    color: #555;
    margin: 10px 0;
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.05rem;
}

.contact-info a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-container {
        padding: 10px;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        padding: 15px 20px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .topic-header {
        padding: 15px 20px;
    }

    .topic-title {
        font-size: 1rem;
    }

    .topic-content {
        padding: 0 20px;
    }

    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .quick-link-card {
        padding: 15px 10px;
    }

    .section-header {
        padding: 12px 15px;
    }

    .topic-header {
        padding: 12px 15px;
    }

    .topic-content {
        padding: 0 15px;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .hero-section,
    .search-section,
    .quick-links-section {
        display: none;
    }

    .topic-content {
        max-height: none !important;
    }

    .help-section {
        page-break-inside: avoid;
    }
}
