:root {
    --primary-color: #1e5799;
    --secondary-color: #207420;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-color);
    direction: rtl;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Section */
  header {
    background: linear-gradient(to right, var(--primary-color), #2989d8);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  
    
  }
  
.logo {

  width: 60px; /* ØªÙƒØ¨ÙŠØ± Ø­Ø¬Ù… Ø§Ù„Ø´Ø¹Ø§Ø± */
  height: 60px; /* ØªÙƒØ¨ÙŠØ± Ø­Ø¬Ù… Ø§Ù„Ø´Ø¹Ø§Ø± */
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px; /* Ø¥Ø¶Ø§ÙØ© Ù…Ø³Ø§ÙØ© Ø¨ÙŠÙ† Ø§Ù„Ø´Ø¹Ø§Ø± ÙˆØ§Ù„Ø£ÙŠÙ‚ÙˆÙ†Ø© */
 }

  
  .logo img {
    border-radius: 50%;
    max-width: 80px;
  }
  
  .header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }
  
  .header-content h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    right: 25%;
  }
  
  .header-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1100/400');
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    padding: 20px;
    max-width: 700px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }
  
  /* Main Content */
  .main-content {
    background-color: var(--white);
    border-radius: 10px;
    margin: 30px 0;
    padding: 40px;
    box-shadow: var(--shadow);
  }
  
  .announcement {
    background: linear-gradient(to right, #ffe8cc, #fff6e6);
    border-right: 5px solid var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .announcement::before {
    content: '🎉';
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 30px;
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  }
  
  .section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 30px 0 20px;
    position: relative;
    padding-right: 20px;
  }
  
  .section-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 25px;
    background-color: var(--secondary-color);
    border-radius: 4px;
  }
  
  .benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  
  .benefit-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .benefit-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  ul.requirements {
    list-style-type: none;
    margin: 20px 0;
  }
  
  ul.requirements li {
    position: relative;
    padding: 10px 35px 10px 0;
    border-bottom: 1px dashed #e0e0e0;
  }
  
  ul.requirements li:last-child {
    border-bottom: none;
  }
  
  ul.requirements li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  
  
  /* Registration Section */
  .registration {
    background: linear-gradient(to bottom, #e8f5e9, #c8e6c9);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
  }
  
  .registration::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
  }
  
  .registration h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  
  .registration-steps {
    counter-reset: step-counter;
    margin: 30px 0;
  }
  
  .step {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    counter-increment: step-counter;
  }
  
  .step-number {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: 15px;
  }
  
  .step-number::before {
    content: counter(step-counter);
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-content h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .contact::before,
  .contact::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  
  .contact::before {
    background-color: rgba(255,255,255,0.05);
    top: -100px;
    left: -100px;
  }
  
  .contact::after {
    background-color: rgba(255,255,255,0.05);
    bottom: -100px;
    right: -100px;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .contact-item:hover {
    transform: translateY(-5px);
  }
  
  .contact-icon {
    font-size: 1.5rem;
    margin-left: 15px;
  }
  
  .limited-seats {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  
  
  /* Media Queries */
  @media (max-width: 768px) {
    .header-content h1 {
      font-size: 2rem;
    }
    
    .hero {
      height: 350px;
    }
    
    .hero-content h2 {
      font-size: 2rem;
    }
    
    .main-content {
      padding: 20px;
    }
    
    .benefits {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      flex-direction: column;
      gap: 15px;
    }
  }