/* ============================================
   Jobs Landing Pages Stylesheet
   Extends style.css for /jobs/ landing pages
   ============================================ */

/* Landing page hero */
.landing-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.landing-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.landing-hero .breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.landing-hero .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.landing-hero .breadcrumb .separator {
    opacity: 0.5;
}

.landing-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 800px;
}

.landing-hero .hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin-bottom: 28px;
}

.landing-hero .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-hero .hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Wave separator */
.landing-wave {
    position: relative;
    margin-top: -1px;
}

.landing-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--bg);
}

[data-theme="dark"] .landing-wave svg {
    fill: var(--gray-900);
}

/* Content sections */
.landing-content {
    padding: 60px 0;
}

.landing-content .container {
    max-width: 900px;
}

.landing-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 48px;
}

.landing-content h2:first-child {
    margin-top: 0;
}

.landing-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.landing-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.landing-content ul, .landing-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.landing-content li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.landing-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Job type cards grid */
.job-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.job-type-card {
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

[data-theme="dark"] .job-type-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.job-type-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-type-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.job-type-card .pay-range {
    display: inline-block;
    padding: 4px 10px;
    background: var(--success);
    color: white;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.job-type-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* FAQ section */
.faq-section {
    padding: 60px 0;
    background: var(--gray-50);
}

[data-theme="dark"] .faq-section {
    background: var(--gray-900);
}

.faq-section .container {
    max-width: 900px;
}

.faq-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    margin-bottom: 12px;
    overflow: hidden;
}

[data-theme="dark"] .faq-item {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

[data-theme="dark"] .faq-question:hover {
    background: var(--gray-700);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Related categories navigation */
.related-categories {
    padding: 60px 0;
}

.related-categories h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

[data-theme="dark"] .related-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.related-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card .related-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* CTA section */
.landing-cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
}

.landing-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.landing-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-cta .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: white;
    color: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: 2px solid white;
}

.landing-cta .btn-white:hover {
    background: transparent;
    color: white;
}

.landing-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.landing-cta .btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Landing page footer is simpler */
.landing-footer {
    padding: 32px 0;
    background: var(--gray-900);
    color: var(--gray-400);
    font-size: 0.875rem;
    text-align: center;
}

.landing-footer a {
    color: var(--gray-300);
    text-decoration: none;
}

.landing-footer a:hover {
    color: white;
}

.landing-footer .footer-links-inline {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* Jobs hub page */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.hub-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

[data-theme="dark"] .hub-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.hub-card .hub-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hub-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hub-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex-grow: 1;
}

.hub-card .hub-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.hub-card .hub-keyword {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gray-100);
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

[data-theme="dark"] .hub-card .hub-keyword {
    background: var(--gray-700);
}

.hub-card .hub-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 640px) {
    .landing-hero {
        padding: 100px 0 40px;
    }

    .landing-hero h1 {
        font-size: 1.75rem;
    }

    .job-types-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .hub-grid {
        grid-template-columns: 1fr;
    }

    .landing-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   Guide Page Components
   Info boxes, step lists, checklists, resource cards
   ============================================ */

/* Info/callout boxes */
.info-box {
    padding: 20px 24px;
    border-radius: 12px;
    margin: 24px 0;
    border-left: 4px solid;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.info-box.tip {
    background: #f0fdf4;
    border-color: var(--success);
    color: #166534;
}

.info-box.warning {
    background: #fffbeb;
    border-color: var(--warning);
    color: #92400e;
}

.info-box.cost {
    background: #eff6ff;
    border-color: var(--primary);
    color: #1e40af;
}

.info-box.info {
    background: #f8fafc;
    border-color: var(--gray-400);
    color: var(--gray-700);
}

[data-theme="dark"] .info-box.tip {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
}

[data-theme="dark"] .info-box.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #fcd34d;
}

[data-theme="dark"] .info-box.cost {
    background: rgba(37, 99, 235, 0.1);
    color: #93c5fd;
}

[data-theme="dark"] .info-box.info {
    background: rgba(148, 163, 184, 0.1);
    color: var(--gray-300);
}

.info-box strong {
    font-weight: 700;
    color: inherit;
}

.info-box p {
    color: inherit;
    margin-bottom: 8px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Step-by-step lists */
.step-list {
    counter-reset: steps;
    list-style: none;
    padding-left: 0;
    margin: 28px 0;
}

.step-list li {
    counter-increment: steps;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

[data-theme="dark"] .step-list li {
    border-color: var(--gray-700);
}

.step-list li:last-child {
    border-bottom: none;
}

.step-list li::before {
    content: counter(steps);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-list li strong {
    color: var(--text-primary);
}

/* Checklist */
.checklist {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.checklist li {
    position: relative;
    padding-left: 32px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Resource link cards */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.resource-card {
    display: block;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

[data-theme="dark"] .resource-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.resource-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.resource-card .resource-label {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.resource-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.resource-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 28px 0;
    border: 1px solid var(--gray-200);
    font-size: 0.9375rem;
}

[data-theme="dark"] .comparison-table {
    border-color: var(--gray-700);
}

.comparison-table thead th {
    background: var(--primary);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-secondary);
    vertical-align: top;
}

[data-theme="dark"] .comparison-table tbody td {
    border-color: var(--gray-700);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

[data-theme="dark"] .comparison-table tbody tr:nth-child(even) {
    background: var(--gray-800);
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* Hub section headers for categorized hub */
.hub-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.hub-section-title:first-of-type {
    margin-top: 32px;
}

.hub-section-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive adjustments for new components */
@media (max-width: 640px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .step-list li {
        gap: 12px;
    }

    .info-box {
        padding: 16px 20px;
    }
}

/* ============================================
   Business Detail Pages
   ============================================ */

.business-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.business-hero .container {
    position: relative;
    z-index: 1;
}

.business-hero h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    max-width: 600px;
}

.business-category {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.business-location {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.business-details {
    padding: 60px 0;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.business-main h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.business-main h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.business-main p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.services-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.services-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.business-contact {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

[data-theme="dark"] .business-contact {
    background: var(--gray-800);
}

.business-contact p {
    margin-bottom: 12px;
}

.business-contact p:last-child {
    margin-bottom: 0;
}

.business-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.business-contact a:hover {
    text-decoration: underline;
}

.business-features {
    margin-bottom: 32px;
}

.business-features ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 0 0;
}

.business-features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.business-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
}

[data-theme="dark"] .business-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.business-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
    display: inline-block;
    padding: 12px 16px;
}

.btn-full:last-child {
    margin-bottom: 0;
}

.rating-display {
    text-align: center;
}

.rating-display .stars {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 8px;
}

.rating-display p {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.rating-display .text-sm {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.benefits-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.related-businesses {
    padding: 60px 0;
    background: var(--gray-50);
    text-align: center;
}

[data-theme="dark"] .related-businesses {
    background: var(--gray-900);
}

.related-businesses h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.related-businesses p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.business-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.business-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.business-cta p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .business-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .business-main h2 {
        font-size: 1.5rem;
    }

    .business-hero h1 {
        font-size: 1.75rem;
    }
}

/* Print styles for business pages */
@media print {
    .landing-hero, .business-hero {
        background: #2563eb !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .faq-answer {
        max-height: none !important;
    }
}
