﻿        .return-container {
            max-width: 900px;
            margin: 60px auto 40px;
            padding: 0 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
        }

        .content-section {
            background: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 4px solid #3b82f6;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline-item {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            position: relative;
        }

        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 15px;
            top: 40px;
            width: 2px;
            height: calc(100% + 20px);
            background: #d1d5db;
        }

        .timeline-dot {
            width: 32px;
            height: 32px;
            background: #3b82f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .timeline-content h4 {
            margin: 0 0 8px 0;
            color: #1f2937;
            font-weight: 700;
        }

        .timeline-content p {
            margin: 0;
            color: #4b5563;
            line-height: 1.6;
        }

        .condition-list {
            background: #f9fafb;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .condition-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .condition-list li {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            color: #4b5563;
        }

        .condition-list li:before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            min-width: 20px;
            flex-shrink: 0;
        }

        .highlight-box {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 16px;
            border-radius: 4px;
            margin: 20px 0;
        }

        .highlight-box strong {
            color: #92400e;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table th {
            background: #f3f4f6;
            padding: 12px;
            text-align: left;
            font-weight: 700;
            color: #1f2937;
            border-bottom: 2px solid #3b82f6;
        }

        .info-table td {
            padding: 12px;
            border-bottom: 1px solid #e5e7eb;
            color: #4b5563;
        }

        @media (max-width: 768px) {
            .return-container {
                margin-top: 40px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .content-section {
                padding: 20px;
            }

            .timeline-item {
                gap: 16px;
            }
        }
