/* Content Pages CSS - for About, Privacy, Change Supplier pages */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 15px 0;
}

.content-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ul {
    margin: 15px 0 15px 30px;
}

.content-section li {
    margin-bottom: 8px;
    color: #333;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}
.highlight-box p {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.highlight-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.warning-box p {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
}

.warning-box h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #2196f3;
    margin: 30px 0;
}

.info-box h4 {
    color: #1976d2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box p {
    color: #555;
}

.supplier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.supplier-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.supplier-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.supplier-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-estimate {
    background: #e8f5e8;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    color: #2e7d32;
}

.steps-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dee2e6;
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.savings-calculator {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.savings-calculator h3 {
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.last-updated {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-bottom: 30px;
    text-align: center;
}

/* Mobile Responsiveness for Content Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}