/* تنسيقات قسم البطل (Hero Section) */
.new-hero, .hero-section {
    background-color: #001e49;
    color: white;
    padding: 4rem 2rem;
    border-radius: 0;
    height: 400px;
    display: flex;
    align-items: center;
}

.new-hero .hero-content, .hero-section .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-left: 2rem;
}

.hero-label {
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem; /* تم تغيير الشكل ليكون مستطيل مع انحراف في الزوايا */
    margin-bottom: 1rem;
    font-weight: bold;
    font-family: 'Cairo', sans-serif; /* تم تحديد نوع الخط */
    font-size: 1.1rem; /* تم ضبط حجم الخط */
}

.hero-label--rect {
    border-radius: 4px !important;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
}

.hero-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.hero-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
}

.hero-features li:before {
    content: "✓";
    margin-left: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-section h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700; /* خط سميك للعنوان الرئيسي */
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.hero-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 500; /* وزن متوسط للخط */
}

.hero-features li:before {
    content: "✓";
    margin-left: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 4px; /* تم تغيير الشكل ليكون مستطيل مع انحراف في الزوايا */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    background-color: #333333;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem; /* تم تغيير الشكل ليكون مستطيل مع انحراف في الزوايا */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px; /* تباعد بين الحروف لتحسين الوضوح */
}

.cta-button:hover {
    background-color: #3371b2;
    transform: translateY(-3px);
}

.secondary-button {
    background-color: #3371b2;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem; /* تم تغيير الشكل ليكون مستطيل مع انحراف في الزوايا */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px; /* تباعد بين الحروف لتحسين الوضوح */
}

.secondary-button:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

.hero-label--rect {
    border-radius: 4px !important;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .new-hero, .hero-section {
        height: auto; /* ارتفاع تلقائي للشاشات الصغيرة */
        padding: 3rem 1.5rem;
    }
    
    .new-hero .hero-content, .hero-section .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}