    /* Navigation Styles */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      height: 64px;
      display: flex;
      align-items: center;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeInDown 0.8s ease-out 0.2s forwards;
    }

    @keyframes fadeInDown {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .navbar.scrolled {
      background: transparent;
      box-shadow: none;
    }

    .nav-container {
      width: 100%;
      height: 100%;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-left-section {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      width: auto;
      max-width: 650px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.3s ease-out;
    }

    .navbar.scrolled .nav-logo {
      transform: scale(1);
    }

    .logo-icon {
      font-size: 1.5rem;
      color: #b4a7d6;
      transition: all 0.3s ease-out;
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      transition: all 0.35s ease-in-out;
      opacity: 1;
      transform: translateX(0);
    }

    .navbar.scrolled .logo-text {
      opacity: 0;
      transform: translateX(-40px);
      pointer-events: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 8px 20px;
      background: #f6fbf6;
      border: 1px solid rgba(180, 160, 220, 0.25);
      border-radius: 12px;
      height: 40px;
      width: max-content;
      transition: all 0.3s ease;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
      transform: translateX(0);
    }

    .navbar.scrolled .nav-links {
      transform: translateX(-120px);
    }

    .nav-links:hover {
      background: #f6fbf6;
    }

    .nav-link {
      font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: #1E1E1E;
      text-decoration: none;
      transition: all 0.3s ease-in-out;
      position: relative;
      padding: 0;
      white-space: nowrap;
    }

    .navbar.scrolled .nav-link {
      font-size: 15px;
    }

    .nav-link:hover {
      color: #1E1E1E;
    }

    .nav-link::after {
      display: none;
    }

    .nav-right-section {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .sign-in-button {
      background: transparent;
      color: #2d2d2d;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .sign-in-button:hover {
      background: rgba(180, 167, 214, 0.1);
      color: #b4a7d6;
    }

    .cta-button {
      background: #b4a7d6;
      color: #ffffff;
      border: none;
      padding: 0;
      width: 120px;
      height: 40px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 15px rgba(180, 167, 214, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-button:hover {
      background: #9d8ec4;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(180, 167, 214, 0.4);
    }

    /* Mobile Menu Styles */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
      padding: 0.5rem;
    }

    .hamburger-line {
      width: 24px;
      height: 2px;
      background: #2d2d2d;
      transition: all 0.3s ease-in-out;
      border-radius: 2px;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background: rgba(180, 167, 214, 0.95);
      backdrop-filter: blur(10px);
      transition: right 0.3s ease-in-out;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-overlay.active {
      right: 0;
    }

    .mobile-menu-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      text-align: center;
    }

    .mobile-nav-link {
      font-size: 1.25rem;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease-in-out;
      padding: 1rem 2rem;
      border-radius: 12px;
    }

    .mobile-nav-link:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .mobile-sign-in-button {
      background: transparent;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      margin-top: 0.5rem;
    }

    .mobile-sign-in-button:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .mobile-cta-button {
      background: #ffffff;
      color: #b4a7d6;
      border: none;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      margin-top: 0.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .mobile-logo {
      display: none;
    }



    @media (max-width: 768px) {
      .nav-left-section,
      .nav-right-section {
        display: none;
      }

      .mobile-logo {
        display: flex;
        transform: scale(0.9);
      }

      .mobile-logo .logo-text {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
      }

      .navbar.scrolled .mobile-logo {
        transform: scale(0.9);
      }

      .navbar.scrolled .mobile-logo .logo-text {
        opacity: 1;
        transform: translateX(0);
      }

      .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
      }

      .nav-container {
        padding: 0 24px;
        justify-content: space-between;
      }

      .navbar {
        height: 56px;
      }

      .navbar.scrolled {
        height: 56px;
      }
    }

.main-container {
      width: 100%;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      background: #f9f7fb;
      padding-top: 0;
    }

.logo-image {
  height: 40px !important; /* غيّر القيمة حسب حجم الشعار المناسب */
  width: auto;
}

.nav-links,
.nav-links ul,
.nav-links ol {
  list-style: none;
  margin: 0;
}