  
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
     
    }

    :root {
      --primary-color: #4facfe;
      --secondary-color: #72cbcf;
      --accent-color: #768ae2;
      --highlight-color: #b888df;
    }
    
    body {
      font-family: "cairo", Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      background: linear-gradient(135deg, var(--primary-color),var(--secondary-color), var(--accent-color), var(--highlight-color));
      background-size: 400% 400%;
      animation: gradientBG 12s ease infinite;
      color: #fff;
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .container {
      max-width: 1920px;
      padding: 20px;
    }

    .logo {
      width: 200px;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid #fff;
      border-radius: 12px;
      color: #fff;
      font-size: 1.1rem;
      text-decoration: none;
      transition: 0.3s;
      cursor: pointer;
    }

    .btn:hover {
      background: rgba(255, 255, 255, 0.4);
    }

    .btn i {
      font-size: 1.3rem;
    }

    .services-sections {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      padding: 20px;
    
    }
    
    .section {
      background: #fff;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: right;
    }
    
    .section-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
      border-bottom: 2px solid #eee;
      padding-bottom: 5px;
    }
    
    .section-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .section-list li {
      margin: 8px 0;
      font-size: 15px;
    }
    
    .section-list li i {
      margin-left: 6px;
      color: var(--accent-color);
    }
    
    .section-list li a {
      text-decoration: none;
      color: #444;
      transition: 0.3s;
    }
    
    .section-list li a:hover {
      color: var(--highlight-color);
      font-weight: bold;
    }
    