 @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
    :root {
      --primary-color: #2C7873;
      --secondary-color: #6FB98F;
      --accent-color: #F2B134;
      --text-color: #333;
      --light-color: #F7F9F9;
    }
    body {
      font-family: 'Tajawal', sans-serif;
      color: var(--text-color);
      direction: rtl;
      text-align: right;
    }
    a {
      text-decoration: none;
      color: inherit;
      outline: none;
    }
    /* Header & Navigation */
    header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
    }
    .sticky-header {
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-link:hover, .language-toggle span:hover {
      color: var(--primary-color);
    }
    .language-toggle span {
      font-weight: 500;
      cursor: pointer;
    }
    /* Buttons */
    .btn-primary {
      background-color: var(--primary-color);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 0.375rem;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      background-color: #1d5751;
      transform: translateY(-2px);
    }
    .btn-secondary {
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 0.75rem 1.5rem;
      border-radius: 0.375rem;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .btn-secondary:hover {
      background-color: #e9a41d;
      transform: translateY(-2px);
    }
    /* Page Header */
    .page-header {
      background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/api/placeholder/1200/400');
      background-size: cover;
      background-position: center;
      padding: 6rem 0;
    }
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      width: 32px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .social-icon:hover {
      background-color: var(--accent-color);
      transform: scale(1.1);
    }
    /* Footer */
    .footer {
      background-color: var(--primary-color);
      color: white;
    }
    .footer a:hover {
      color: var(--accent-color);
    }
    /* Smooth Fade-in Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* RTL Adjustments */
    .flex {
      direction: rtl;
    }
    .space-x-8 > :not([hidden]) ~ :not([hidden]) {
      margin-left: 2rem;
      margin-right: 0;
    }
    .md\\:flex-row {
      flex-direction: row-reverse;
    }
    .md\\:flex-row-reverse {
      flex-direction: row;
    }
    .ml-4 {
      margin-right: 1rem;
      margin-left: 0;
    }
    .mr-2 {
      margin-left: 0.5rem;
      margin-right: 0;
    }
    .space-x-4 > :not([hidden]) ~ :not([hidden]) {
      margin-left: 1rem;
      margin-right: 0;
    }