.return-page {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: 80vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.return-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    color: #1a1a1a;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.6;
}

.return-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.return-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.return-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info {
    margin-top: 20px;
    font-size: 1.05rem;
}

.contact-info div {
    margin-bottom: 8px;
}

.contact-info strong {
    color: #1a1a1a;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #0056b3;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.download-btn:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 123, 255, 0.3);
    color: white;
    text-decoration: none;
}

.download-btn i {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .return-page {
        padding: 40px 0;
    }

    .return-content {
        padding: 40px 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}