/* guide.css */

.container {
    text-align: center;
    background-color: #000819;
    min-height: 70vh; /* يضمن تمدد المحتوى مع الشاشة */
    display: flex;
    justify-content: flex-start; /* محاذاة العناصر في الأعلى */
    align-items: center;
    flex-direction: column;
    padding-top: 40px; /* مسافة علوية متوسطة لعرض العنوان بشكل جيد */
    padding-bottom: 10px;
    box-sizing: border-box;
    border-radius: 0;

}

h1 {
    color: #a6872d;
    font-size: 2.5em;
    margin-top: 0px; /* عدم إضافة مسافة علوية إضافية */
}

h2 {
    color: #a6872d;
    font-size: 1.5em;
    margin-bottom: 1px;
}

.content {
    color: #a6872d;
    font-size: 1.3em;
    text-align: center;
    margin: 20px auto;
    line-height: 1.6;
    max-width: 800px;
}

.back-btn {
    margin-top: 20px;
    font-size: 1.5em;
    color: #fff;
    background-color: #3b3932;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 45%;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 0;

}

.back-btn:hover {
    background-color: #8e6e1a;
}

/* تحسين التجاوب للجوال */
@media (max-width: 600px) {
    .container {
        padding-top: 20px; /* تقليل المسافة العلوية على الهواتف */
    }

    h1 {
        font-size: 2em;
        margin-top: 10px;
    }
    
    .back-btn {
        display: block;
        width: 90%; /* جعل عرض الأزرار 90% */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
}
.contact-info {
    color: #ffffff; /* لون النص الأبيض لرقم الهاتف والبريد الإلكتروني */
    text-decoration: none; /* إزالة التسطير تحت الرابط */
}

.contact-info:hover {
    text-decoration: underline; /* إضافة التسطير عند تمرير الفأرة */
}


