/* إعدادات عامة */
:root {
    --main-bg-color: #ffffff;
    --main-text-color: #fff;
    --accent-color: #65C305;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
}

/* الهيدر */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
    background-color: var(--main-bg-color);
    border-bottom: 2px solid var(--accent-color);
    height: 80px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease, background-color 0.3s;
}
header.scrolled {
    background-color: #fff; /* أو لون مميز */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* اللوجو */
.header-left .logo a {
    display: inline-block; /* لجعل الرابط يأخذ حجم الصورة فقط */
}

.header-left .logo img {
    width: 150px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.header-left .logo img:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 15px var(--accent-color));
}

/* شريط البحث */
.search-bar {
    display: flex;
    align-items: center;
    width: 30%;
}

.search-bar input {
    padding: 8px;
    font-size: 14px;
    width: 100%;
    border: 2px solid var(--accent-color);
    outline: none;
    background: var(--main-bg-color);
    color: #65C305 ;
    border-radius: 5px 0 0 5px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.search-bar input:hover, .search-bar input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.search-bar button {
    background-color: var(--accent-color);
    color: black;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

.search-bar button:hover {
    box-shadow: 0 0 10px var(--accent-color);
}

/* استعلامات الوسائط للهواتف المحمولة */
@media (max-width: 768px) {
    .search-bar {
        width: 90%; /* شغل معظم المساحة على الموبايل */
        margin: 10px auto; /* هامش أعلى وأسفل */
    }
    
    .search-bar input {
        padding: 12px; /* زيادة أكثر لللمس السهل */
        font-size: 18px; /* خط أكبر */
    }
    
    .search-bar button {
        padding: 12px 20px; /* زر أكبر */
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .search-bar {
        flex-direction: column; /* الترتيب العمودي على الشاشات الصغيرة جدًا */
        gap: 10px;
    }
    
    .search-bar input,
    .search-bar button {
        width: 100%;
        border-radius: 5px; /* زوايا مدورة لكلا العنصرين */
    }
}

/* القائمة */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    background-color: var(--main-bg-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.language-selector:hover {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 10px var(--accent-color);
}

/* تحسين الهيدر على الموبايل */
@media (max-width: 768px) {
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        position: fixed; /* تثبيت الهيدر أثناء التمرير */
        top: 0;
        left: 0;
        width: 100%;
        background-color: white; /* اجعل الخلفية واضحة */
        z-index: 1000;
    }

    .logo {
        max-width: 120px; /* تقليل حجم اللوجو */
    }

    .search-bar {
        flex: 1;
        margin: 0 10px;
    }

    .search-bar input {
        width: 100%;
        padding: 6px;
        font-size: 14px;
    }

    .menu {
        display: flex;
        gap: 15px;
        font-size: 14px;
    }

    .menu a {
        text-decoration: none;
        color: green; /* أو أي لون مناسب */
        font-weight: bold;
    }

    /* تحسين زر البحث */
    .search-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: green;
        border-radius: 5px;
    }

    /* تحسين شريط اللغة */
    #language-switcher {
        font-size: 14px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
}

@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px; /* تقليل المسافات بين العناصر */
    }

    .container img {
        width: 90%; /* تكبير الصور بدون كسر التصميم */
        max-width: 300px;
        height: auto;
    }

    .container p {
        text-align: center; /* توسيط النصوص */
        font-size: 16px;
    }
}



/* نص متحرك (Marquee) */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 10px 0;
    border-top: 2px solid #65C305;
    border-bottom: 2px solid #65C305;
    display: flex;
    align-items: center;
    height: 40px;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    position: absolute;
    width: 100%;
    animation: marqueeMove 15s linear infinite;
}

@keyframes marqueeMove {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.marquee-text {
    font-size: 20px;
    color: #65C305;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    padding-left: 50px;
}

/* تصميم ايقونة واتساب */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;  /* لو عايزها شمال غيرها لـ left */
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .whatsapp-float img {
    width: 60px;
    height: 60px;
  }
  
  /* الرسالة اللي بتظهر لما تقف بالماوس */
  .whatsapp-float:hover::after {
    content: "ANY QUESTION PRESS HERE";
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #25D366;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
  }
  

  

/* شريط الفيديوهات */
.video-slider {
    display: flex;
    justify-content: flex-start;  /* ترتيب الفيديوهات من اليسار */
    gap: 25px;  /* المسافة بين الفيديوهات */
    margin: 20px 0;
    overflow-x: auto;  /* يسمح بالتمرير أفقيًا */
    overflow-y: hidden;  /* منع التمرير العمودي */
    padding: 10px;
    white-space: nowrap; /* جعل التمرير أفقي فقط */
    scroll-snap-type: x mandatory; /* تحريك سلس عند التمرير */
}

/* الفيديوهات */
.video {
    width: 400px;  /* تكبير عرض الفيديو */
    height: 250px; /* تكبير ارتفاع الفيديو */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    object-fit: cover;  /* لضمان أن الفيديو يظهر داخل الإطار */
    flex-shrink: 0; /* منع تصغير الفيديو عند التمرير */
    scroll-snap-align: start; /* محاذاة الفيديوهات عند التمرير */
}

/* عند التمرير على الفيديو */
.video:hover {
    transform: scale(1.15);  /* تكبير الفيديو عند المرور عليه */
    box-shadow: 0 0 20px #65C305;  /* إضافة تأثير الظل عند التمرير */
}

/* تخصيص شريط التمرير */
.video-slider::-webkit-scrollbar {
    height: 8px; /* تخفيض ارتفاع شريط التمرير */
}

.video-slider::-webkit-scrollbar-thumb {
    background-color: #65C305; /* لون شريط التمرير */
    border-radius: 4px;
}

/* عند التمرير على الفيديو */
.video:hover {
    transform: scale(1.2);  /* تكبير الفيديو عند المرور عليه */
    box-shadow: 0 0 15px #65C305;  /* إضافة تأثير الظل عند التمرير */
}

/* تنسيق كلمة "المواسم" */
.season-title {
    text-align: center;  /* توسيط النص */
    font-size: 28px;
    font-weight: bold;
    color: #65C305;
    margin-top: 40px;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* تأثير عند تمرير الماوس على النص */
.season-title:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* حاوية الصورة */
.image-container {
    display: flex;
    justify-content: center;  /* محاذاة الصورة في المنتصف */
    margin-top: 40px;  /* المسافة بين الفيديو والصورة */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* إضافة حركة مرنة للتأثير */
}

.image-container img {
    width: 80%;  /* عرض الصورة بنسبة مئوية من الشاشة */
    max-width: 1200px;  /* الحد الأقصى لعرض الصورة */
    border-radius: 10px;  /* إضافة حواف دائرية للصورة */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  /* إضافة تأثير الظل للصورة */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* تأثير سلس عند المرور بالماوس */
}

/* التأثير عند المرور بالماوس على الصورة */
.image-container:hover img {
    transform: scale(1.1); /* تكبير الصورة */
    box-shadow: 0 0 20px 5px rgba(0, 255, 0, 0.7); /* تأثير النيون الأخضر */
}

/* حاوية الجملة لضمان المحاذاة في المنتصف */
.info-description-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    margin-bottom: 20px;
}

/* تنسيق الجملة الجديدة */
.info-description {
    font-size: 24px;
    color: #65C305;
    text-align: center;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.info-description:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* قسم الصناديق */
.info-section {
    display: flex;
    justify-content: center;    /* ترتيب الصناديق في الوسط */
    gap: 30px;                  /* مسافة بين الصناديق */
    margin: 40px 0;
}

/* تنسيق كل صندوق */
.info-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 400px;               /* تعديل العرض ليتناسب مع حجم الصورة */
    text-align: center;
}

/* تنسيق الصورة داخل الصندوق */
.info-box img {
    width: 100%;                /* الصورة تملأ عرض الصندوق */
    height: 400px;              /* ارتفاع ثابت للصورة */
    object-fit: cover;          /* تغطية الصورة للإطار دون تشويه */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير النيون عند المرور على الصندوق والصورة */
.info-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px 5px rgba(0, 255, 0, 0.7);
}

.info-box:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
}

/* تنسيق النص تحت الصورة */
.info-box h3 {
    margin-top: 20px;
    color: #65C305;
    font-size: 18px;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
}

/* تنسيق الصورة الجديدة داخل الصندوق */
.info-box img:last-of-type {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير النيون عند المرور على الصورة الجديدة */
.info-box:last-of-type:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
}

/* حاوية الصورة الجديدة */
.new-image-container {
    display: flex;
    flex-direction: column; /* ترتيب العناصر عموديًا */
    align-items: center; /* محاذاة العناصر في المنتصف */
    margin-top: 40px; /* المسافة بين العناصر السابقة والصورة الجديدة */
}

/* تنسيق الصورة الجديدة */
.new-image-container img {
    width: 80%; /* عرض الصورة بنسبة مئوية من الشاشة */
    max-width: 800px; /* الحد الأقصى لعرض الصورة */
    border-radius: 10px; /* إضافة حواف دائرية للصورة */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* إضافة تأثير الظل للصورة */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* تأثير سلس عند المرور بالماوس */
}

/* التأثير عند المرور بالماوس على الصورة الجديدة */
.new-image-container img:hover {
    transform: scale(1.1); /* تكبير الصورة */
    box-shadow: 0 0 20px 5px rgba(0, 255, 0, 0.7); /* تأثير النيون الأخضر */
}

/* تنسيق النص تحت الصورة الجديدة */
.new-image-description {
    font-size: 24px; /* حجم النص */
    color: #65C305; /* لون النص */
    text-align: center; /* محاذاة النص في المنتصف */
    margin-top: 30px; /* المسافة بين الصورة والنص */
    text-shadow: 0 0 5px #65C305, 0 0 10px #65C305; /* تأثير الظل على النص */
    transition: transform 0.3s ease, text-shadow 0.3s ease; /* تأثير سلس عند المرور بالماوس */
}

.new-image-description:hover {
    transform: scale(1.05); /* تكبير النص عند المرور بالماوس */
    text-shadow: 0 0 10px #65C305, 0 0 20px #65C305; /* تأثير ظل أقوى عند المرور */
}

/* حاوية الجملة */
.info-description-wrapper {
    display: flex;
    justify-content: center; /* محاذاة الجملة في المنتصف */
    margin: 40px 0; /* المسافة بين العناصر السابقة والجملة */
}

/* تنسيق الجملة */
.info-description {
    font-size: 24px; /* حجم النص */
    color: #65C305; /* لون النص */
    text-align: center; /* محاذاة النص في المنتصف */
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; /* تأثير الظل على النص */
    transition: transform 0.3s ease, text-shadow 0.3s ease; /* تأثير سلس عند المرور بالماوس */
}

.info-description:hover {
    transform: scale(1.05); /* تكبير النص عند المرور بالماوس */
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff; /* تأثير ظل أقوى عند المرور */
}

/* تنسيق القسم الوسيط */
.intermediate-section {
    text-align: center;             /* محاذاة المحتوى في الوسط */
    margin: 40px 0;                 /* مسافة عمودية مناسبة */
}
  
/* تنسيق الجملة الوسطى */
.intermediate-text {
    font-size: 24px;
    color: #65C305;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    margin-bottom: 20px;
}
  
.intermediate-text:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}
  
/* حاوية الصورة الوسطى (لضمان محاذاة الصورة وتوفير مسافة) */
.intermediate-image-container {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
/* تنسيق الصورة الوسطى */
.intermediate-image {
    width: 400px;            /* يمكنك تعديل العرض حسب التصميم */
    height: auto;
    display: block;
}
  
/* تأثير عند المرور على حاوية الصورة */
.intermediate-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
}

/* حاوية كاملة للعناصر */
.bio-produkte-container {
    width: 100%;
    margin: 40px auto;
    text-align: center; /* توسيط العناصر أفقياً */
}
  
/* العنوان "Bio-Produkte" */
.bio-produkte-heading {
    font-size: 28px;
    color: #65C305;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; /* تأثير النيون */
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}
  
/* تأثير التكبير عند المرور بالماوس */
.bio-produkte-heading:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}
  
/* حاوية الصور */
.bio-produkte-images {
    display: flex;
    flex-direction: column; 
    gap: 20px;
    align-items: center; /* توسيط الصفوف أفقياً */
}
  
/* كل صف (الصورة الكبيرة + الصورة الصغيرة) */
.image-pair {
    display: flex;
    gap: 10px; /* مسافة بين الصورة الكبيرة والصغيرة */
}
  
/* الصورة الكبيرة */
.large-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
/* الصورة الصغيرة */
.small-img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
/* تأثير التكبير والظل عند المرور على أي صورة */
.image-pair img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* استهداف جميع عناصر النص داخل الفوتر */
.footer-section h1,
.footer-section h2,
.footer-section h3,
.footer-section h4,
.footer-section h5,
.footer-section h6,
.footer-section p,
.footer-section li,
.footer-section a {
    color: #65C305; /* اللون الأخضر */
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; /* تأثير النيون */
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* عند تمرير الماوس على أي عنصر نصي */
.footer-section h1:hover,
.footer-section h2:hover,
.footer-section h3:hover,
.footer-section h4:hover,
.footer-section h5:hover,
.footer-section h6:hover,
.footer-section p:hover,
.footer-section li:hover,
.footer-section a:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff; /* تكثيف تأثير النيون */
}

/* القسم العام للفوتر */
.footer-section {
    background-color: #f9f9f9;
    color: #333;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}
  
/* حاوية الأعمدة */
.footer-container {
    display: flex;
    justify-content: space-around; /* توزيع الأعمدة أفقياً */
    flex-wrap: wrap;              /* السماح بالنزول لسطر جديد إذا ضاق العرض */
    max-width: 1200px;           /* أقصى عرض للفوتر */
    margin: 0 auto;              /* توسيطه أفقياً */
}
  
/* كل عمود */
.footer-column {
    flex: 1;
    min-width: 200px;            /* أصغر عرض للعمود */
    margin: 10px;
}
  
/* عنوان العمود (Kontakt, Impressum, Adresse) */
.footer-column h3 {
    color: #65C305;
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; /* تأثير نيون خفيف */
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}
  
.footer-column h3:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}
  
/* القوائم والروابط */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.footer-column li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
  
.footer-column li a:hover {
    color: #65C305;
}
  
/* تنسيق الخريطة */
.map-container {
    margin-top: 10px;
    border: 2px solid #65C305;
    border-radius: 8px;
    overflow: hidden;
}

/* القسم السفلي (حقوق الملكية) */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
  
.footer-bottom p {
    color: #777;
    font-size: 14px;
}

/* الأنماط الجديدة لصفحة الفئات */
.category-title {
    color: #65C305;
    text-align: center;
    margin: 20px 0;
    font-size: 15px;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* تأثير عند تمرير الماوس على العنوان */
.category-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* قائمة المنتجات */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* توسيط العناصر */
    gap: 20px; /* المسافة بين العناصر */
    padding: 20px;
}

/* كل عنصر منتج */
.product-item {
    text-align: center; /* توسيط النصوص داخل كل عنصر */
    width: 200px; /* عرض ثابت لكل عنصر */
    background: rgba(255, 255, 255, 0.1); /* تأثير خفيف للخلفية */
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير عند تمرير الماوس على العنصر */
.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(101, 195, 5, 0.6);
}

/* تأثيرات الصور */
.product-item img {
    width: 100%; /* عرض الصورة 100% من العنصر */
    height: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
    border-radius: 10px; /* إضافة حواف دائرية للصورة */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير عند تمرير الماوس على الصورة */
.product-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(101, 195, 5, 0.7);
}

/* تنسيق العنوان داخل كل منتج */
.product-item h2 {
    margin: 10px 0 5px; /* المسافة بين العنوان والجملة */
    font-size: 18px; /* حجم خط العنوان */
    color: #65C305;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* التأثير عند تمرير الماوس على العنوان */
.product-item h2:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* تنسيق النص الوصفي للمنتج */
.product-item p {
    font-size: 14px; /* حجم خط الجملة التعبيرية */
    color: #65C305; /* لون الجملة التعبيرية */
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* التأثير عند تمرير الماوس على النص */
.product-item p:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* جعل النصوص متوسطة في الصفحة */
.content-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* تأثيرات النصوص */
.text-effect {
    font-weight: bold;
    color: #2c3e50;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.text-effect:hover {
    color: #65C305;
    transform: scale(1.05);
}

/* ضبط قائمة القيم */
.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 1.2em;
    margin: 10px 0;
    transition: transform 0.3s ease-in-out;
}

.about-section ul li:hover {
    transform: translateX(10px);
    color: #65C305;
}

.contact-info p {
    font-size: 18px; /* تكبير الخط */
    color: #000; /* تغيير اللون حسب تصميمك */
    font-weight: bold;
    margin: 5px 0;
}

.contact-info a:hover {
    text-decoration: underline; /* إضافة تأثير عند المرور */
}

.contact-link {
    text-decoration: none; /* إزالة التسطير تحت الروابط */
    color: #333; /* لون النص الأساسي */
    font-weight: bold;
    font-size: 1.1em; /* ضبط حجم الخط */
    transition: all 0.3s ease-in-out; /* تأثير انتقال سلس */
}

/* تأثير عند تمرير الماوس على الرابط */
.contact-link:hover {
    color: #ff6600; /* لون التأثير عند الوقوف بالمؤشر */
    text-shadow: 0px 0px 10px rgba(255, 102, 0, 0.7); /* تأثير مشع */
    transform: scale(1.1); /* تكبير النص عند الوقوف عليه */
    filter: brightness(1.2); /* زيادة سطوع الرابط عند المرور */
}

/* تأثيرات النصوص للأحكام والشروط */
.text-effect {
    font-weight: bold;
    color: #65C305; /* اللون الأخضر الأساسي */
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; /* تأثيرات النص */
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* تغيير اللون والزيادة عند التمرير */
.text-effect:hover {
    color: #65C305; /* اللون لا يتغير عند التمرير لأنه هو نفسه */
    transform: scale(1.05);
    filter: brightness(1.2); /* تحسين السطوع عند التمرير */
}


/* تنسيق العناوين داخل AGB  #65C305*/
.agb-section h2 {
    font-size: 24px;
    color: #65C305;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.agb-section h2:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff;
}

/* تنسيق النصوص العادية داخل AGB */
.agb-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease-in-out;
}

.agb-section p:hover {
    color: #65C305;
}

/* تأثير الصور */
.certification-image {
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}

.certification-image:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* تنسيق كروت الشهادات */
.certification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.certification-card {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.certification-card:hover {
    transform: scale(1.05);
}

.impressum-title {
    font-size: 20px;
    font-weight: bold;
    color: #65C305;
    text-shadow: 0 0 10px #ffffff;
}

.impressum-list li a {
    font-size: 18px;
    color: #65C305;
    text-shadow: 0 0 5px #ffffff;
    text-decoration: none;
}

.impressum-list li a:hover {
    text-decoration: underline;
}
/* تأثير النيون الأساسي للنصوص داخل Impressum */
.impressum-content {
    font-size: 18px;
    color: #65C305;
    font-weight: bold;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    transition: all 0.3s ease-in-out;
    text-align: center;
    padding: 40px 20px;
}

/* تأثير عند تمرير الماوس */
.impressum-content:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* تأثير النيون على العناوين داخل Impressum */
.impressum-content h1, 
.impressum-content h2, 
.impressum-content h3 {
    font-size: 22px;
    font-weight: bold;
    color: #65C305;
    text-shadow: 0 0 8px #ffffff, 0 0 15px #ffffff;
    transition: all 0.3s ease-in-out;
}

.impressum-content h1:hover, 
.impressum-content h2:hover, 
.impressum-content h3:hover {
    transform: scale(1.05);
    text-shadow: 0 0 12px #ffffff, 0 0 25px #ffffff;
}

/* تأثير النيون على الروابط */
.impressum-content a {
    color: #65C305;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.impressum-content a:hover {
    color: #4a9c02;
    text-shadow: 0 0 12px #ffffff, 0 0 20px #ffffff;
    text-decoration: underline;
}

