/* CSS Variables for consistent theming */
:root {
    --primary-color: #7868E6;
    --secondary-color: #B8B5FF;
    --accent-color: #FFB4B4;
    --background-color: #EDEEF7;
    --light-background: #E4FBFF;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --shadow-light: 0 2px 8px rgba(120, 104, 230, 0.1);
    --shadow-medium: 0 4px 16px rgba(120, 104, 230, 0.15);
    --shadow-heavy: 0 8px 32px rgba(120, 104, 230, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 181, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(228, 251, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    box-shadow: var(--shadow-medium);
}

.header__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.header__text {
    text-align: left;
}

.header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.header__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.logo {
    max-width: 150px;
    height: auto;
    display: block;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo--large {
    max-width: 200px;
}

/* Main Content */
.main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-bar__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background-color: var(--background-color);
    padding: 0 1rem;
}

.progress-bar__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.progress-bar__step--active .progress-bar__number {
    background-color: var(--primary-color);
    color: white;
}

.progress-bar__step--completed .progress-bar__number {
    background-color: var(--accent-color);
    color: white;
}

.progress-bar__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.progress-bar__step--active .progress-bar__label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.step--active {
    display: block;
}

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

/* Welcome Screen */
.welcome-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 0;
}

.welcome-content {
    max-width: 800px;
    text-align: center;
}

.welcome-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.welcome-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.welcome-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.welcome-feature:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.welcome-feature .icon {
    display: inline-flex;
    margin-bottom: 1rem;
}

.welcome-feature .icon svg {
    color: var(--primary-color);
}

.welcome-feature h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.welcome-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.welcome-actions {
    margin-bottom: 2rem;
}

.welcome-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-medium);
}

.card__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card__title .icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.card__description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Forms */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form__hint {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.form__input,
.form__select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(120, 104, 230, 0.1);
}

.form__input:invalid {
    border-color: var(--accent-color);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    min-height: 60px;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
}

.btn--primary:hover {
    background-color: #6B5CE6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn--secondary:hover {
    background-color: #A8A4FF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--success {
    background-color: #28a745;
    color: white;
}

.btn--success:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn--outline.btn--accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn--outline.btn--accent:hover {
    background-color: var(--accent-color);
    color: white;
}

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

/* Form Actions */
.form__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Transport Options */
.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accommodation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.transport-option,
.accommodation-option {
    position: relative;
}

.transport-option__input,
.accommodation-option__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.transport-option__label,
.accommodation-option__label {
    display: block;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.transport-option__input:checked + .transport-option__label,
.accommodation-option__input:checked + .accommodation-option__label {
    border-color: var(--primary-color);
    background-color: rgba(120, 104, 230, 0.05);
}

.transport-option__icon,
.accommodation-option__icon {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.transport-option__icon svg,
.accommodation-option__icon svg {
    width: 2rem;
    height: 2rem;
}

.transport-option__title,
.accommodation-option__title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.transport-option__desc,
.accommodation-option__desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Tips */
.transport-tips,
.accommodation-tips {
    background: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.tips-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tips-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.1rem;
}

/* Trip Summary */
.trip-summary {
    background: linear-gradient(135deg, var(--secondary-color), var(--light-background));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.trip-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trip-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trip-summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-summary-item strong {
    color: var(--primary-color);
}

/* Checklist */
.checklist-container {
    margin-top: 2rem;
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checklist-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.checklist-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checklist-progress__text {
    font-weight: 600;
    color: var(--text-color);
}

.checklist-progress__count {
    font-weight: 600;
    color: var(--primary-color);
}

.checklist-progress__bar {
    width: 150px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.checklist-progress__fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: var(--transition);
}

.checklist-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checklist-category {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.checklist-category__header {
    background: var(--light-background);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.checklist-category__header:hover {
    background: rgba(120, 104, 230, 0.1);
}

.checklist-category__header.collapsed::after {
    content: ' ▼';
}

.checklist-category__items {
    padding: 1rem 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.checklist-item__checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.checklist-item__checkbox--checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checklist-item__checkbox--checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.checklist-item__label {
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
}

.checklist-item__label--checked {
    text-decoration: line-through;
    opacity: 0.6;
}

.checklist-item__priority {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.checklist-item__priority--high {
    background-color: var(--accent-color);
    color: white;
}

.checklist-item__priority--medium {
    background-color: #ffc107;
    color: white;
}

.checklist-item__priority--low {
    background-color: #28a745;
    color: white;
}

/* Completion Message */
.completion-message {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: var(--border-radius);
    text-align: center;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.completion-content .icon {
    display: inline-flex;
    margin-bottom: 1rem;
}

.completion-content .icon svg {
    color: white;
}

.completion-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.completion-content p {
    color: white;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Checklist Actions */
.checklist-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.checklist-actions__primary {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.checklist-actions__secondary {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

.logo--footer {
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer__links p,
.footer p {
    margin: 0.5rem 0;
}

.footer__link {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.footer__link:hover {
    border-bottom-color: white;
}

.footer__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__navigation .footer__link {
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.footer__navigation .footer__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: transparent;
}

.footer__separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.25rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-overlay--active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header__brand {
        flex-direction: column;
        gap: 1rem;
    }

    .header__text {
        text-align: center;
    }

    .header__title {
        font-size: 2rem;
    }

    .logo {
        max-width: 120px;
    }

    .logo--large {
        max-width: 150px;
    }

    .progress-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-bar__step {
        min-width: 80px;
    }

    .progress-bar__number {
        width: 35px;
        height: 35px;
    }

    .progress-bar__label {
        font-size: 0.8rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card__title {
        font-size: 1.5rem;
    }

    .transport-options,
    .accommodation-options {
        grid-template-columns: 1fr;
    }

    .form__actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        width: 100%;
    }

    .checklist-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .checklist-progress {
        width: 100%;
        justify-content: space-between;
    }

    .trip-summary-grid {
        grid-template-columns: 1fr;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checklist-actions__primary,
    .checklist-actions__secondary {
        flex-direction: column;
    }

    .checklist-actions__primary .btn,
    .checklist-actions__secondary .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 2rem 0;
    }

    .card {
        padding: 1rem;
    }

    .form__input,
    .form__select {
        padding: 0.6rem 0.8rem;
    }

    .transport-option__label,
    .accommodation-option__label {
        padding: 1rem;
    }

    .checklist-progress__bar {
        width: 100px;
    }

    .welcome-screen {
        min-height: 50vh;
        padding: 1rem 0;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

    .welcome-description {
        font-size: 1rem;
    }

    .logo {
        max-width: 100px;
    }

    .logo--large {
        max-width: 130px;
    }

    .btn--large {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .completion-content h3 {
        font-size: 1.4rem;
    }

    .page-navigation {
        flex-direction: column;
    }

    .page-navigation .btn {
        width: 100%;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .privacy-summary {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .privacy-table {
        font-size: 0.85rem;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 0.75rem 0.5rem;
    }

    .footer__navigation {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .progress-bar,
    .form__actions,
    .footer,
    .welcome-screen {
        display: none;
    }

    .card {
        box-shadow: none;
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .checklist-item__checkbox {
        border: 1px solid #000;
    }

    .checklist-item__checkbox--checked {
        background-color: #000;
    }

    body {
        background: white;
    }

    .logo {
        max-width: 100px;
        display: block;
        margin: 0 auto 1rem;
    }
}

/* Icon Styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
    transition: var(--transition);
}

.icon--inline {
    vertical-align: middle;
    margin: 0 0.25rem;
}

.icon--inline svg {
    width: 1.2rem;
    height: 1.2rem;
}

.icon--small svg {
    width: 1rem;
    height: 1rem;
}

.icon--medium svg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon--large svg {
    width: 2rem;
    height: 2rem;
}

.icon--xlarge svg {
    width: 3rem;
    height: 3rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.btn:focus,
.form__input:focus,
.form__select:focus,
.checklist-item__checkbox:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #4B0082;
        --text-color: #000000;
        --border-color: #000000;
    }
}

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

/* Page Navigation */
.page-navigation {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-navigation--bottom {
    margin-top: 2rem;
    margin-bottom: 0;
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-category {
    background: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.faq-category__title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(120, 104, 230, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
}

.faq-item--active .faq-answer {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    transition: max-height 0.6s ease-in, padding 0.4s ease-in;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Privacy Page Styles */
.privacy-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.privacy-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section__title {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-subsection {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.privacy-content p {
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: var(--transition);
}

.privacy-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.privacy-highlight {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.privacy-note {
    background: var(--light-background);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    font-size: 0.95rem;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.privacy-table thead {
    background: var(--primary-color);
    color: white;
}

.privacy-table th,
.privacy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.privacy-table tbody tr:hover {
    background: var(--light-background);
}

.privacy-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.summary-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid;
}

.summary-card--green {
    background: #d4edda;
    border-color: #28a745;
}

.summary-card--green h4 {
    color: #28a745;
}

.summary-card--red {
    background: #f8d7da;
    border-color: #dc3545;
}

.summary-card--red h4 {
    color: #dc3545;
}

.summary-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.summary-card ul {
    margin-left: 1.5rem;
}

.summary-card li {
    margin-bottom: 0.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-card {
    background: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.privacy-agreement {
    background: linear-gradient(135deg, var(--secondary-color), var(--light-background));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.privacy-agreement h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-agreement p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.privacy-section--final {
    margin-bottom: 0;
}
