/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1,
.nav-brand a {
    color: #e91e63;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.nav-brand a {
    text-decoration: none;
    display: inline-block;
}

.nav-brand p {
    font-size: 0.9rem;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #e91e63;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 100px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #e91e63;
    color: #fff;
    padding: 8px 12px;
    z-index: 1001;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:not(:disabled):hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: white;
    color: #e91e63;
    border: 2px solid #e91e63;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.checklist-preview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.checklist-preview h3 {
    color: #4caf50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.checklist-preview ul {
    list-style: none;
}

.checklist-preview li {
    padding: 0.5rem 0;
    color: #555;
    font-weight: 500;
}

/* Popular Lists Section */
.popular-lists {
    padding: 4rem 0;
    background: #f9f9f9;
}

.popular-lists h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
}

.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.list-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.list-card.featured {
    border: 2px solid #e91e63;
    background: linear-gradient(135deg, #fce4ec 0%, #fff 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.list-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.list-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.card-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #c2185b;
}

/* Quick Tips Section */
.quick-tips {
    padding: 4rem 0;
    background: white;
}

.quick-tips h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.tip-item {
    text-align: center;
    padding: 1.5rem;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.tip-item p {
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #e91e63;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-section .btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* PDF Builder Responsive */
    .builder-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .config-panel {
        order: 1;
    }

    .generated-list {
        order: 2;
    }

    .list-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .list-actions {
        justify-content: center;
    }

    .pdf-options {
        grid-template-columns: 1fr;
    }

    .category-filters {
        flex-direction: column;
        align-items: center;
    }

    .help-options {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .popular-lists,
    .quick-tips {
        padding: 3rem 0;
    }

    .popular-lists h2,
    .quick-tips h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Loading and States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    border-color: #f44336 !important;
    background-color: #ffebee;
}

.error-message {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.success {
    border-color: #4caf50 !important;
    background-color: #e8f5e8;
}

.success-message {
    color: #4caf50;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Focus improvements for accessibility */
.btn:focus,
select:focus,
textarea:focus,
input:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }

    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 100px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Lists Page Styles */
.lists-overview {
    padding: 4rem 0;
    background: #f9f9f9;
}

.list-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.category-header p {
    color: #666;
    font-size: 1.1rem;
}

.category-content h3 {
    color: #e91e63;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.checklist {
    list-style: none;
    margin-bottom: 1.5rem;
}

.checklist li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

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

.category-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-actions {
    padding: 4rem 0;
    background: white;
}

.quick-actions h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #e91e63;
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.action-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.action-card p {
    color: #666;
}

/* PDF Builder Styles */
.list-builder {
    padding: 4rem 0;
    background: #f9f9f9;
}

.builder-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.config-panel {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.config-panel h2 {
    margin-bottom: 2rem;
    color: #333;
}

.config-group {
    margin-bottom: 1.5rem;
}

.config-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.config-group select,
.config-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.config-group select:focus,
.config-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.config-group textarea {
    height: 80px;
    resize: vertical;
    min-height: 60px;
    max-height: 120px;
}

.config-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    accent-color: #e91e63;
}

.config-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.config-group label[for] {
    display: block;
    cursor: default;
}

.generated-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.list-header {
    background: #e91e63;
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.list-header h2 {
    margin: 0;
}

.list-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.list-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.list-actions .btn-secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.list-actions .btn-secondary:hover {
    background: white;
    color: #e91e63;
}

#checklist-container {
    padding: 2rem;
}

.placeholder-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.checklist-category {
    margin-bottom: 2rem;
}

.checklist-category h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.checklist-category .checklist {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
}

.checklist-category .checklist li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.checklist-category .checklist li:last-child {
    border-bottom: none;
}

.checklist-category .checklist label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.checklist-category .checklist input[type="checkbox"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    accent-color: #e91e63;
    cursor: pointer;
}

.checklist-category .checklist input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    color: #999;
    opacity: 0.7;
}

.checklist-category .checklist label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.checklist-category .checklist label:hover {
    background: rgba(233, 30, 99, 0.05);
}

.checklist-category .checklist li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.checklist-category .checklist li:last-child {
    border-bottom: none;
}

.checkmark {
    margin-left: 0.5rem;
    flex: 1;
    line-height: 1.4;
}

#progress-tracker {
    padding: 1.5rem 2rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

#progress-tracker h3 {
    margin-bottom: 1rem;
    color: #333;
}

.progress-bar {
    background: #ddd;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: #4caf50;
    height: 100%;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
}

.ready-lists {
    padding: 4rem 0;
    background: white;
}

.ready-lists h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.ready-lists > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

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

.pdf-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #e91e63;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pdf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    border-color: #c2185b;
}

.pdf-card:hover::before {
    left: 100%;
}

.pdf-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.pdf-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pdf-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.pdf-card .btn {
    width: 100%;
    justify-content: center;
}

.pdf-card .card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pdf-card .card-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
}

.pdf-tips {
    padding: 4rem 0;
    background: #f9f9f9;
}

.pdf-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* FAQ Styles */
.faq-categories {
    padding: 2rem 0;
    background: white;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e91e63;
    background: transparent;
    color: #e91e63;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e91e63;
    color: white;
}

.search-container {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-container input:focus {
    border-color: #e91e63;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.faq-content {
    padding: 4rem 0;
    background: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #e91e63;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

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

.faq-answer > div,
.faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-answer {
    padding-top: 1rem;
}

.faq-answer h4 {
    color: #e91e63;
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
}

.faq-answer ul {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.faq-answer li {
    margin: 0.3rem 0;
    color: #555;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.faq-answer strong {
    color: #333;
}

.highlight {
    background: yellow;
    padding: 1px 2px;
    border-radius: 2px;
}

.quick-help {
    padding: 4rem 0;
    background: white;
}

.quick-help h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.help-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Print styles moved to css/print.css */
