/* Return Page Modern UI */

:root {
    --brand-primary: #9E7FA4;
    --brand-secondary: #D4A5D8;
    --text-dark: #2D3748;
    --text-muted: #718096;
    --border-color: #E2E8F0;
    --bg-light: #F7FAFC;
    --shadow-md: 0 4px 16px rgba(158, 127, 164, 0.15);
    --shadow-lg: 0 8px 24px rgba(158, 127, 164, 0.2);
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* Page Container */
.return-page-container {
    min-height: 70vh;
    padding: 2rem 0;
    margin-top: 6rem;
}

/* Hero Section */
.return-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.return-hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.return-hero i {
    font-size: 2.5rem;
}

/* Content Card */
.return-content-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    margin-bottom: 2rem;
}

/* Typography */
.return-content-card h3 {
    color: var(--brand-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.return-content-card h3:first-of-type {
    margin-top: 0;
}

.return-content-card h3::before {
    content: "↩️";
    font-size: 1.5rem;
}

.return-content-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.return-content-card p strong {
    color: var(--brand-primary);
    font-weight: 600;
}

/* Intro Section */
.return-intro {
    background: linear-gradient(135deg, rgba(158, 127, 164, 0.1) 0%, rgba(212, 165, 216, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--brand-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Policy Section */
.policy-section {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .return-page-container {
        margin-top: 5rem;
        padding: 1rem 0;
    }

    .return-hero {
        padding: 3rem 1rem;
        margin-bottom: 2rem;
    }

    .return-hero h1 {
        font-size: 1.75rem;
    }

    .return-hero i {
        font-size: 1.75rem;
    }

    .return-content-card {
        padding: 1.5rem;
    }

    .return-content-card h3 {
        font-size: 1.25rem;
    }

    .return-intro {
        padding: 1.5rem;
        font-size: 1rem;
    }
}
