/* =========================================
   تنسيقات صفحة السياسات (بدون الخط العمودي)
   ========================================= */

.policy-page {
    padding: 60px 0 100px;
    background: #fcfcfc;
}

/* العنوان بخط واحد فقط */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 34px;
    font-weight: 900;
    color: #000;
    display: inline-block;
    border-bottom: 5px solid #7dd3fc;
    padding-bottom: 5px;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 45px;
}

/* شبكة البطاقات مع الكونتور (Border) */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.policy-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    /* كونتور واضح مثل فورم الشراء */
    border: 2px solid #7dd3fc; 
    text-align: center;
    transition: 0.3s;
}

.policy-card:hover {
    box-shadow: 0 8px 20px rgba(125, 211, 252, 0.2);
    transform: translateY(-3px);
}

.card-icon {
    font-size: 30px;
    color: #259bea;
    margin-bottom: 15px;
}

.policy-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}

.policy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* منطقة الملاحظة والزر */
.policy-note-wrapper {
    margin-top: 50px;
    text-align: center;
}

.policy-note {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    /* تم حذف الـ border-right (الخط العمودي) من هنا بناءً على طلبك */
    margin-bottom: 25px;
    font-weight: 700;
    color: #333;
}

/* زر اتصل بنا الاحترافي */
.btn-contact-policy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #259bea;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 17px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 155, 234, 0.3);
}

.btn-contact-policy:hover {
    background: #1a7eb8;
    transform: scale(1.05);
}

/* الموبايل */
@media (max-width: 768px) {
    .policy-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 26px; }
}