/* عام */
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f4;
    color: #1f2933;
}

a {
    text-decoration: none;
    color: inherit;
}

/* الهيدر */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1f2933;
    color: #fbbf24;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

/* الكونتينر */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* مقالات */
.articles {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.article-card h2 {
    font-size: 24px;
    color: #1f2933;
    margin-bottom: 15px;
}

.article-card p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.article-card a.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fbbf24;
    color: #1f2933;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.article-card a.read-more:hover {
    background-color: #f59e0b;
}

/* زر العودة */
.back-btn {
    display: block;
    width: max-content;
    margin: 50px auto 20px;
    padding: 14px 28px;
    background-color: #1f2933;
    color: #fbbf24;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #111921;
}

/* Responsive */
@media (min-width: 768px) {
    .articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* artical */
.seo-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    overflow: hidden;
}


/* ================== SEO CONTENT - PROFESSIONAL ================== */

.seo-content {
    margin: 80px 0;
    padding: 45px;
    background: linear-gradient(135deg, #1f2933, #111827);
    border-radius: 16px;
    color: #f9fafb;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.seo-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #b8962e);
}

.seo-content h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #fbbf24;
    font-weight: 700;
}

.seo-content p {
    font-size: 17px;
    line-height: 2.1;
    color: #e5e7eb;
    margin-bottom: 22px;
    text-align: justify;
}


/* ================== FAQ - ACCORDION STYLE ================== */

.faq {
    margin: 80px 0;
}

.faq h2 {
    font-size: 30px;
    margin-bottom: 35px;
    color: #111827;
    text-align: center;
    font-weight: 800;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
}

.faq-question {
    padding: 22px 26px;
    font-size: 18px;
    font-weight: 700;
    color: #1f2933;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.faq-question i {
    font-size: 18px;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    background: #ffffff;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 26px 26px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/* ================== SEO HIDDEN (SAFE) ================== */

.seo-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    overflow: hidden;
}


/* ================== RESPONSIVE ================== */

@media (max-width: 768px) {

    .seo-content {
        padding: 30px;
    }

    .seo-content h2,
    .faq h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
    }

    .seo-content p {
        font-size: 15px;
    }
}






