

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #f7f7f7;
            margin: 0;
            padding: 0;
            line-height: 1.9;
            color: #333;
        }

        .container {
            max-width: 1100px;
            margin: auto;
            background: #fff;
            padding: 30px;
        }

        h1, h2, h3 {
            color: #0a6d3c;
            margin-top: 30px;
        }

        h1 {
            text-align: center;
            font-size: 30px;
        }

        p {
            font-size: 17px;
            margin-bottom: 15px;
        }

        ul {
            padding-right: 20px;
        }

        ul li {
            margin-bottom: 10px;
            font-size: 16px;
        }

        .highlight {
            background: #e9f5ef;
            padding: 15px;
            border-right: 5px solid #0a6d3c;
            margin: 20px 0;
        }

.phone a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
}

.phone a:hover {
    text-decoration: underline;
}

        .faq h3 {
            margin-bottom: 5px;
            color: #444;
        }

        footer {
            text-align: center;
            padding: 20px;
            background: #f1f1f1;
            margin-top: 40px;
            font-size: 15px;
        }

                /* زر الصفحة الرئيسية */
        .home-btn {
            display: inline-block;
            background: #0a6d3c;
            color: #fff;
            padding: 10px 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .home-btn:hover {
            background: #085a31;
        }

        /* صورة المقال */
.article-image {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}


/* تصغير الصورة على الموبايل */
@media (max-width: 768px) {
    .article-image {
        width: 90%;
        height: 290px;
    }
}



/* حاوية الأزرار */
.fixed-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* زر عام */
.fixed-contact a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

/* واتساب */
.whatsapp-btn {
    background: #25D366;
}

/* اتصال */
.call-btn {
    background: #0a6d3c;
}

/* حركة لطيفة */
.fixed-contact a:hover {
    transform: scale(1.08);
}

/* تحسين الخطوط والتباعد على الموبايل */
@media (max-width: 768px) {

    body {
        font-size: 18px;
    }

    .container {
        padding: 18px;
    }

    h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 18px;
        line-height: 1.9;
    }

    ul li,
    ol li {
        font-size: 17px;
    }

    .home-btn {
        font-size: 17px;
        padding: 12px 20px;
    }

    footer {
        font-size: 16px;
    }
}

