/*
===============================================================================
PAGE-SPECIFIC STYLES
===============================================================================

PURPOSE:
Styles for specific pages: legal, premium, FAQ, about, welcome

WHEN TO USE THIS FILE:
- When adding/modifying page-specific styles
- When working with foundational styling elements
- When styles for specific pages: legal, premium, faq, about, welcome

LOAD ORDER: This file loads in position 5 of 6
- Loaded after: base, layout, components, auth
- Loaded before: utilities

DEPENDENCIES:
- Requires: base.css variables (if not base.css itself)
- Required by: All subsequent CSS files

Generated: 2025-09-04 16:59:11
Original file: common.css (119677 bytes)
===============================================================================
*/

.error-message, .success-message {
    color: var(--error-color);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background-color: rgba(239, 68, 68, 0.1);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    animation: slideIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.success-message {
    color: var(--success-color);
    background-color: rgba(16, 185, 129, 0.1);
}

.legal-sections {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }

.welcome-logout-tab {
        display: none; /* Remove !important to allow JS override */
    }

.welcome-logout-tab[style*="display: flex"] {
        display: flex !important;
    }

.mobile-content-container .welcome-heading {
        margin-top: 0 !important; /* Remove top margin to prevent cutoff */
    }

.legal-sections {
        /* FIX: Ensure proper width and alignment on mobile */
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }

.legal-container {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 1rem !important;
    }


.checkout-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        position: sticky;
        top: 0;
        background-color: var(--background-color);
        z-index: 10;
    }

.checkout-modal-header h2 {
        margin: 0;
        font-size: 1.5rem;
    }

.checkout-modal-close {
        background: none;
        border: none;
        min-height: 44px;
        min-width: 44px;
        font-size: 1.5rem;
        padding: 8px;
        color: var(--text-light);
        cursor: pointer;
        border-radius: 4px;
    }

.checkout-modal-body {
        padding: 20px;
        padding-bottom: 40px; /* Extra space for safe area */
    }

.welcome-logo {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.welcome-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.welcome-panel-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.welcome-panel {
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 500px;
    padding: var(--spacing-lg);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    max-height: 90vh;
    overflow-y: auto;
}

.welcome-panel-overlay.visible .welcome-panel {
    transform: translateY(0);
}

.welcome-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.welcome-panel-header h2 {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.welcome-text {
    background: linear-gradient(135deg, #47a3f3, #1E6BB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-panel-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.welcome-panel-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.welcome-panel-content {
    color: var(--text-primary);
}

.welcome-panel-content p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.welcome-panel-suggestions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.welcome-panel-suggestion-btn {
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(71, 163, 243, 0.06), rgba(30, 107, 184, 0.03));
    color: var(--text-primary);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: block;
    width: 100%;
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.welcome-panel-suggestion-btn:hover {
    background-color: var(--chat-bg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
}

.checkout-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.checkout-modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.checkout-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.checkout-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--spacing-sm);
    line-height: 1;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.checkout-modal-close:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.checkout-modal-body {
    padding: var(--spacing-lg);
}

.premium-content .payment-result-container {
    min-height: auto;
    padding: 0;
    background: none;
    width: 100%;
}

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

.success-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.cancel-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cancel-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.premium-status-section {
    background: var(--success-bg, #f0f9ff);
    border: 1px solid var(--success-border, #bae6fd);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.premium-status-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.premium-status-card {
    background: var(--chat-bg);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.premium-info {
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.premium-info p {
    margin: var(--spacing-sm) 0;
    color: var(--text-secondary);
}

.premium-features {
    margin-top: var(--spacing-lg);
    text-align: left;
}

.premium-features h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 600;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.premium-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.checkout-section {
    margin-top: var(--spacing-lg);
}

.premium-header-container {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.premium-header-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.premium-content {
    background: var(--chat-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.fair-use-policy-section {
    background: var(--info-bg, #f8fafc);
    border: 1px solid var(--info-border, #e2e8f0);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.fair-use-policy-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.fair-use-policy-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.fair-use-link {
    margin-bottom: 0 !important;
}

.fair-use-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.fair-use-link a:hover {
    text-decoration: underline;
}

.terms-agreement {
    text-align: left;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: #f1f5f9; /* slightly darker than var(--chat-bg) */
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.terms-checkbox {
    margin-right: var(--spacing-sm);
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
    cursor: pointer;
    flex-shrink: 0;
}

.terms-text {
    flex: 1;
}

.terms-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.privacy-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.cancel-icon, .success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cancel-message, .success-message {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.legal-sections {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.legal-section {
    padding: 2rem 0;
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    padding-bottom: 0;
}

.legal-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 2rem;
    background-color: white;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--border-color);
}

.legal-container h2 {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #47a3f3, #1E6BB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.legal-container p {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Fix long URL overflow in legal content */
.legal-container a {
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
}

.faq-question[id] {
    scroll-margin-top: 80px;
}

.faq-question[id]:target {
    background: linear-gradient(135deg, rgba(124, 93, 250, 0.1), rgba(124, 93, 250, 0.05));
    padding: 8px 12px;
    border-radius: 4px;
    margin: -8px -12px 16px -12px;
    animation: highlight-fade 3s ease-out;
}

.privacy-last-updated {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

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

.privacy-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--text-primary);
}

.privacy-table td {
    color: var(--text-primary);
}

.privacy-table-main-row:nth-child(4n+1) {
    background: white;
}

.privacy-table-main-row:nth-child(4n+3) {
    background: #f8f9fa;
}

.privacy-table-explanation-row {
    background: inherit;
    border-top: none;
}

.privacy-table-explanation {
    padding: var(--spacing-sm) var(--spacing-md);
    font-style: italic;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.privacy-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.terms-effective-date {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.terms-provider {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.about-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0 2rem 0;
    border-left: 4px solid #f39c12;
}

.about-common-explanation {
    background: linear-gradient(135deg, rgba(71, 163, 243, 0.08), rgba(30, 107, 184, 0.05));
    border: 1px solid rgba(71, 163, 243, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0 2rem 0;
    border-left: 4px solid #47a3f3;
}

.common-explanation-heading {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.common-explanation-section-heading {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.common-explanation-section-heading:first-of-type {
    margin-top: 0;
}

.common-explanation-text {
    line-height: 1.7;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.common-explanation-text:last-child {
    margin-bottom: 0;
}

.common-explanation-link {
    margin-top: 1rem;
    margin-bottom: 0;
}

.common-explanation-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.common-explanation-link a:hover {
    color: #1E6BB8;
    text-decoration: underline;
}

.common-explanation-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(71, 163, 243, 0.2);
}

.common-explanation-picture {
    flex-shrink: 0;
}

.developer-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(71, 163, 243, 0.3);
    box-shadow: 0 2px 8px rgba(71, 163, 243, 0.2);
}

.common-explanation-footer .common-explanation-link {
    margin: 0;
    flex: 1;
}

/* Desktop layout for founder quote section */
@media (min-width: 1340px) {
    .common-explanation-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
        margin-top: 2rem;
    }

    .common-explanation-picture {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .common-explanation-quote {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        align-items: center;
    }

    .common-explanation-link {
        grid-column: 1;
        grid-row: 2;
        text-align: center;
        margin-top: 1rem;
    }
}

.welcome-content-container {
    flex: 1;
    display: none; /* Hidden by default */
    flex-direction: column;
    min-height: calc(100vh - 60px - var(--spacing-sm) * 2); /* Use min-height to allow expansion */
    max-height: none; /* Remove height restriction */
    overflow: visible; /* Allow content to expand */
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: var(--spacing-sm);
    margin-right: var(--spacing-xs);
    position: relative;
    z-index: 1;
    /* Add consistent top padding to align with clerk auth container */
    padding-top: var(--spacing-lg);
    /* Ensure container doesn't overflow */
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.welcome-content-container[style*="display: flex"] {
    display: flex !important;
}

.welcome-content {
    padding: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
    min-height: 100%;
    overflow: visible; /* No scrollbars, expand down */
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.welcome-hero {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.welcome-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.welcome-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.welcome-description {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.welcome-section {
    margin-bottom: var(--spacing-sm);
}

.welcome-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.welcome-section p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0;
}

.welcome-cta {
    background: linear-gradient(135deg, rgba(71, 163, 243, 0.08), rgba(30, 107, 184, 0.05));
    border: 1px solid rgba(71, 163, 243, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    text-align: center;
}

.welcome-cta h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.welcome-cta p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0;
}

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

.welcome-list li {
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    padding-left: 1.2rem;
}

.welcome-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    margin-top: auto;
}

.welcome-trial-offer {
    background: var(--chat-bg);
    border: 2px solid var(--accent-color);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.welcome-trial-offer p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.welcome-disclaimer {
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
    font-style: italic;
    margin-top: auto;
}

.welcome-privacy-section {
    background: var(--background-secondary, #f8f9fa);
    border: 1px solid var(--border-color);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin: var(--spacing-sm) 0;
    text-align: center;
}

.welcome-privacy-text {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.welcome-privacy-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.welcome-privacy-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

.trial-expired-modal .checkout-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.faq-container {
    /* Remove centering to match other legal sections */
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    margin: 0;
    padding: 1rem 1.5rem;
    background-color: var(--chat-bg);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(124, 93, 250, 0.05);
}

.faq-answer {
    padding: 1.5rem;
    background-color: white;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

.feedback-intro {
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.feedback-form-container {
    max-width: 800px;
    margin: 0;
}

.feedback-form {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.feedback-submit {
    width: auto;
    min-width: 200px;
    max-width: 300px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.feedback-submit:hover:not(:disabled) {
    background-color: #6c52eb;
    transform: translateY(-1px);
}

.feedback-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Section Styling */
.contact-info-section {
    margin-top: 3rem;
    padding: 0;
}

.contact-info-title {
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.contact-info-content {
    display: grid;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    transition: none;
}

.contact-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.contact-label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 120px;
    margin-right: 1rem;
}

.contact-value {
    color: var(--text-color);
    flex: 1;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #6c52eb;
    text-decoration: underline;
}

.premium-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

