* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    direction: rtl;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Form Section */
  .form-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
  }
  
  .form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
  }
  
  .step {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .step.active .step-number {
    background: #0056b3;
    color: #fff;
  }
  
  .step-text {
    color: #6c757d;
    font-weight: 600;
  }
  
  .step.active .step-text {
    color: #0056b3;
  }
  
  .form-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: right;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
  }
  
  .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
  }
  
  .form-control:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1em;
  }
  
  .form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  
  .form-success {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  
  .submit-button,
  .next-button {
    background: #0056b3;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .submit-button:hover,
  .next-button:hover {
    background: #004494;
  }
  
  .back-button {
    background: #6c757d;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .back-button:hover {
    background: #5a6268;
  }
  
  .button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
  }
  
  .social-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .phone-input-group {
    display: flex;
    gap: 10px;
  }
  
  .phone-input-group .country-code {
    width: 120px;
  }
  
  .phone-input-group .phone-number {
    flex: 1;
  }
  
  .file-upload {
    position: relative;
    width: 100%;
  }
  
  .file-upload-label {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .file-upload-label:hover {
    background: #e9ecef;
    border-color: #0056b3;
  }
  
  .file-upload input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }
  
  .upload-icon {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 8px;
  }
  
  .form-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 8px;
  }
  
  .file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .preview-item {
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
    max-width: 100px;
  }
  
  .preview-item img {
    max-width: 100%;
    height: auto;
  }
  
  .success-message,
  .error-message {
    text-align: center;
    padding: 20px;
    border-radius: 4px;
  }
  
  .success-message i,
  .error-message i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .success-message {
    background: #d4edda;
    color: #155724;
  }
  
  .error-message {
    background: #f8d7da;
    color: #721c24;
  }
  
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .progress-steps {
      flex-direction: column;
      align-items: flex-end;
    }
  
    .step {
      margin: 10px 0;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .social-media-grid {
      grid-template-columns: 1fr;
    }
  
    .button-group {
      flex-direction: column;
      gap: 10px;
    }
  
    .submit-button,
    .next-button,
    .back-button {
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 40px 15px;
    }
  
    .form-container {
      padding: 20px;
    }
  
    .form-title {
      font-size: 1.5rem;
    }
  
    .form-control {
      font-size: 0.9rem;
    }
  
    .submit-button,
    .next-button,
    .back-button {
      padding: 10px;
      font-size: 1rem;
    }
  }