/* ==========================================
   WARRANTY PAGE STYLES
   ========================================== */

.page-hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.page-hero .subtitle {
    font-size: 1.5rem;
    color: #666;
}

.page-section {
    padding: 100px 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coverage-card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.coverage-card h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.coverage-card p, .coverage-card ul {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.coverage-card ul {
    list-style: none;
    padding: 0;
}

.coverage-card li {
    padding: 5px 0;
}

.coverage-card li:before {
    content: "✓ ";
    color: #D4AF37;
    font-weight: bold;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.step h4 {
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.step p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}
