/* Page-specific styles */

/* About Us Page */
.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.about-section h1 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section h2 {
    color: #667eea;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-section li {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.about-section li strong {
    color: #1a202c;
}

/* Services Page */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.services-section h1 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-item h2 {
    color: #667eea;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-section h1 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    color: #667eea;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-method p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.contact-method a {
    color: #667eea;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1a202c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Privacy Policy & Terms */
.privacy-policy,
.terms-of-service {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.privacy-policy h1,
.terms-of-service h1 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.privacy-policy h2,
.terms-of-service h2 {
    color: #667eea;
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.privacy-policy p,
.terms-of-service p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.privacy-policy em,
.terms-of-service em {
    color: #64748b;
    font-size: 0.875rem;
}

.privacy-policy a,
.terms-of-service a {
    color: #667eea;
    text-decoration: none;
}

.privacy-policy a:hover,
.terms-of-service a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section,
    .contact-section,
    .privacy-policy,
    .terms-of-service {
        padding: 1rem;
    }
    
    .services-section {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section h1,
    .services-section h1,
    .contact-section h1,
    .privacy-policy h1,
    .terms-of-service h1 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}