/* ==========================================================================
   تنسيقات صفحة الاسترجاع والاستبدال (Returns Policy Styles)
   ========================================================================== */

   body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.policy-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* تنسيق حقول الإدخال */
.form-control:focus, .form-select:focus {
    border-color: #111 !important;
    box-shadow: none !important;
}

/* زر الإرسال */
.btn-dark {
    background-color: #111;
    border-color: #111;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
}