/* Terms of Service Page Styles - Optimized for readability */

@import url('style.css');

/* Llc Section */
.llc-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    padding: 3rem 0;
    min-height: 50vh;
}

/* Terms Content */
.terms-content {
    margin-top: 2rem;
}

.terms-section {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f093fb;
    color: #2c3e50;
}

.terms-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.terms-section h2 i {
    margin-right: 0.5rem;
    color: #f093fb;
}

.terms-section h4 {
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.terms-section p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 1rem;
}

.terms-section li strong {
    color: #1a202c;
    font-weight: 600;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #fbbf24;
    background-color: #fffbeb;
    color: #92400e;
}

.alert i {
    margin-right: 0.5rem;
    color: #d97706;
}

.alert strong {
    color: #92400e;
}

/* Contact Info */
.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 0.75rem;
    width: 20px;
    color: #f093fb;
}

.contact-info strong {
    color: #1a202c;
}

/* Llc Text */
.llc-section .text-white {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.llc-section h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .llc-section {
        padding: 2rem 0;
        min-height: 40vh;
    }
    
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .llc-section {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .terms-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-section p,
    .terms-section li,
    .contact-info p {
        font-size: 16px !important;
    }
}

/* Print Styles */
@media print {
    .llc-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        padding: 1rem 0 !important;
    }
    
    .terms-section {
        box-shadow: none !important;
        border: 1px solid #ddd;
        background: white !important;
    }
    
    .navbar, footer {
        display: none !important;
    }
    
    .terms-section h2,
    .terms-section p,
    .terms-section li {
        color: black !important;
    }
} 