/* Return page specific styles */
.return-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.return-hero h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.return-hero p {
    font-size: 1.2rem;
    color: #666;
}

.return-content {
    margin-top: 2rem;
}

.return-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.return-section h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.return-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.return-section p:last-child {
    margin-bottom: 0;
}

.return-list {
    color: #555;
    line-height: 1.8;
    margin-left: 1rem;
}

.return-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.return-list li:before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Process timeline styles */
.process-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #27ae60;
}

.timeline-number {
    background-color: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Non-returnable items section */
.non-returnable {
    background-color: #fdf2f2;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

/* Contact info section */
/* .contact-info {
    border-left-color: #3498db;
    background-color: #ebf3fd;
} */

/* Responsive design */
@media (max-width: 768px) {
    .return-hero {
        padding: 1.5rem;
    }
    
    .return-hero h2 {
        font-size: 1.5rem;
    }
    
    .return-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .return-section h3 {
        font-size: 1.1rem;
    }
    
    .return-list {
        margin-left: 0.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        text-align: left;
    }
}

/* Print styles */
@media print {
    .return-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .return-hero {
        background-color: transparent !important;
        box-shadow: none;
    }
    
    .timeline-item {
        background-color: transparent !important;
        border: 1px solid #ddd;
    }
    
    .non-returnable {
        background-color: transparent !important;
        border: 1px solid #ddd;
    }
}