/* Return Policy Page Styles */
.return-policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.return-policy-content .welcome-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.policy-subtitle {
    color: #5751e1;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
}

.policy-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.policy-section h5 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section strong {
    color: #5751e1;
}

.policy-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section ul li:before {
    content: "•";
    color: #5751e1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.conclusion-text {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    font-weight: 500;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .return-policy-content {
        padding: 20px;
    }
    
    .policy-section {
        padding: 15px;
    }
    
    .policy-subtitle {
        font-size: 1.5rem;
    }
    
    .policy-section h5 {
        font-size: 1.2rem;
    }
}
