/* Main Container */
.return-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.return-policy-container h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Policy Overview Section */
.policy-overview {
    margin-bottom: 4rem;
}

.overview-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-card h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Return Process Section */
.return-process {
    margin-bottom: 4rem;
}

.return-process h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-card p {
    color: #666;
}

/* Return Conditions Section */
.return-conditions {
    margin-bottom: 4rem;
}

.return-conditions h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.condition-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.condition-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.condition-card ul {
    list-style: none;
    padding: 0;
}

.condition-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.condition-card li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Refund Information Section */
.refund-info {
    margin-bottom: 4rem;
}

.refund-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.refund-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.refund-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.refund-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.refund-card p {
    color: #666;
    line-height: 1.5;
}

/* Need Help Section */
.need-help {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 4rem;
}

.need-help h2 {
    color: #333;
    margin-bottom: 1rem;
}

.help-content p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.help-button {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.help-button:first-child {
    background: #007bff;
    color: white;
    border: none;
}

.help-button:first-child:hover {
    background: #0056b3;
}

.chat-button {
    background: #28a745;
    color: white;
    border: none;
}

.chat-button:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .return-policy-container {
        padding: 1rem;
    }

    .process-grid,
    .conditions-grid,
    .refund-grid {
        grid-template-columns: 1fr;
    }

    .help-buttons {
        flex-direction: column;
    }

    .help-button {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.process-card,
.condition-card,
.refund-card {
    animation: fadeIn 0.5s ease-out forwards;
} 