/* Page-specific styles for policy and support pages */

.page-content {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-section ul,
.content-section ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.content-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.content-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* FAQ Items */
.faq-item {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

.faq-item p,
.faq-item ul,
.faq-item ol {
    margin-bottom: 15px;
}

.faq-item p:last-child,
.faq-item ul:last-child,
.faq-item ol:last-child {
    margin-bottom: 0;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.contact-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white !important;
}

/* Contact Info */
.contact-info {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Response Time */
.response-time {
    background: rgba(118, 75, 162, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(118, 75, 162, 0.2);
}

.response-time p {
    margin: 0;
    color: #764ba2;
    font-weight: 500;
    font-size: 1.1rem;
}

/* System Requirements */
.content-section ul li strong {
    display: inline-block;
    min-width: 140px;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
}