        :root {
            --main-color: #e63946;
            --dark-color: #1d3557;
            --bg-color: #f8f9fa;
            --white: #ffffff;
            --text-color: #333;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            line-height: 1.8;
            /* جعل المحتوى العام في المنتصف */
            text-align: center; 
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }

        /* الهيدر وقسم الترحيب */
    header {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #000000;
    padding: 1px 20px;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

        header h1 { font-size: 3rem; margin: 0 0 15px; font-weight: 800; }
        header p { font-size: 1.3rem; opacity: 0.9; max-width: 850px; margin: 0 auto; }

        .btn-enter {
            display: inline-block;
            background: var(--white);
            color: var(--main-color);
            padding: 18px 55px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.4rem;
            margin-top: 30px;
            transition: 0.3s ease-in-out;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .btn-enter:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }

        /* البطاقات والمحتوى */
        .section-card {
            background: var(--white);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 35px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center; /* توسيط العناصر داخل الكارت */
        }

        h2 { 
            color: var(--dark-color); 
            font-size: 2rem; 
            margin-bottom: 25px; 
            position: relative;
            padding-bottom: 10px;
        }
        /* زخرفة تحت العنوان الموسط */
        h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--main-color);
            border-radius: 2px;
        }

        p { max-width: 900px; margin-left: auto; margin-right: auto; }

        /* قائمة المميزات الموسطة */
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 0;
            list-style: none;
            width: 100%;
        }
        .features-list li {
            background: #fffafa;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid #eee;
            transition: 0.3s;
            text-align: center; /* نصوص المميزات في المنتصف */
        }
        .features-list li:hover { 
            border-color: var(--main-color); 
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .features-list strong { color: var(--main-color); display: block; margin-bottom: 5px; font-size: 1.1rem; }

        /* أزرار المدن والدول */
        .grid-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* توسيط الأزرار */
            gap: 12px;
            margin-top: 25px;
            width: 100%;
        }
        .city-link {
            min-width: 130px;
            padding: 12px 20px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            transition: 0.3s;
        }
        .city-link:hover {
            background: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
            transform: scale(1.05);
        }

        .country-link:hover { background: var(--dark-color); border-color: var(--dark-color); }

        /* نصائح السيو */
        .tips-list {
            padding: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            width: 100%;
        }
        .tips-list li {
            background: #f1f4f9;
            padding: 15px;
            border-radius: 12px;
        }

        @media (max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            .section-card { padding: 25px 15px; }
            header { padding: 60px 15px; }
        }