/* Static page content */


/* static pages */
.terms-page {
    padding: 2rem;
    background: var(--background);
    color: var(--text);
    flex: 1;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow);
}

.terms-container h1 {
    /*color: var(--primary-dark);  FROM ABOUT US*/
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style: disc;
    /*list-style: none; - may fix faq page*/
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.terms-section ul ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
    list-style: disc;
}

.support-info, .contact-info {
    background: var(--hover-bg);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.disclaimer {
    font-weight: bold;
    margin-bottom: 1rem;
}

.equipment-list {
    columns: 2;
    column-gap: 2;
    width: 50%;
    margin: 0 auto;
    list-style: none;
    margin-left: 0;
}

.equipment-list li {
    break-inside: avoid;
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1.5rem;
    list-style: none;
}

.equipment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text);
    opacity: 0.4;
}

.signup-cta {
    background: var(--primary-dark);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 2rem;
}

.signup-cta h2 {
    color: white !important;
    font-size: 2rem !important;
    margin-bottom: 1rem;
}

.signup-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-weight: bold;
    font-size: 1.4rem !important;
    margin: 1.5rem 0;
}

.signup-button {
    /* Match search button's theme-adaptive background */
    background-color: #80ccff;

    /* Use white text like search button */
    color: white !important;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    /* Match search button's typography */
    font-size: 18px;
    font-weight: bold;


    /* Match search button's dimensions and spacing */
    padding: 6px 8px;
    padding-right: 16px;
    height: 48px;
  
    /* Match border and radius */
    border: none;
    border-radius: 8px;

    /* Match display and alignment */
    display: inline-flex;
    align-items: center;
    gap: 8px;

    /* Enhanced transitions */
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.signup-button:hover {
    /* Match search button hover effects */
    background-color: #0088ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px var(--shadow);
}

.signup-button:active {
    /* Match search button active effects */
    transform: translateY(0);
    box-shadow: none;
}

.gear-icon {
    width: 48px;
    height: 48px;
}

/* contact us */
.contact-section {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--bg-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-methods {
    display: grid;
    gap: 0.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    background-color: var(--bg-primary);
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-1px);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 0.75rem;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.card-content {
    flex: 1;
}

.card-content h2 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.card-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    font-size: 1.1rem;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.95rem;
}

.card-content a {
    color: var(--text-link);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.card-content a:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

.hours-card {
    border: 1px solid var(--bg-accent);
}

.response-time {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--bg-accent);
    font-size: 0.9rem;
    opacity: 0.8;
}




/* Privacy Policy Styles */
.privacy-page {
    background: var(--background);
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px var(--shadow);
}

.privacy-header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.privacy-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-left: 0;
    color: var(--text);
}

.privacy-header .effective-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
    font-style: normal;
}

.privacy-intro {
    background: var(--hover-bg);
    border-left: 3px solid var(--primary);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

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

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 12px;
    margin-left: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.privacy-section p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-section ul {
    margin: 12px 0;
    padding-left: 25px;
}

.privacy-section li {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.privacy-section strong {
    color: var(--text);
    font-weight: 600;
}

.compact-list {
    margin: 12px 0;
}

.compact-list li {
    margin-bottom: 6px;
}

.contact-box {
    background: var(--hover-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    margin-top: 15px;
}

.contact-box p {
    margin-bottom: 8px;
}

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

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

.highlight-box {
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 15px 20px;
    margin: 15px 0;
}

.highlight-box p {
    margin: 0;
}

@media (max-width: 768px) {

    /* static pages */
    .terms-page {
        padding: 1rem;
    }

    .terms-container {
        padding: 1rem;
    }

    .terms-container h1 {
        font-size: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.25rem;
    }

    /* Contact us */
        .contact-section {
        margin: 0.5rem;
        padding: 1rem;
    }

    .contact-card {
        padding: 0.75rem;
    }

    .icon-wrapper {
        width: 32px;
        height: 32px;
        margin-right: 0.75rem;
    }

    .contact-section h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    /* Privacy Policy */
    .privacy-container {
        padding: 25px;
    }

    .privacy-header h1 {
        font-size: 1.6rem;
    }

    .privacy-section h2 {
        font-size: 1.2rem;
    }
}



