body {
      font-family: "Segoe UI", Tahoma, sans-serif;
      background: #f4f6f8;
      margin: 0;
      padding: 0;
    }
    header {
      background: #695094;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    header h1 {
      margin: 0;
      font-size: 1.5rem;
    }
    .logo-img {
    height: 40px; 
    width: 60px;;  
    }
    .container {
      max-width: 800px;
      margin: 2rem auto;
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    label {
      font-weight: bold;
      display: block;
      margin-top: 1rem;
    }
    input[type="file"], textarea, button {
      width: 100%;
      margin-top: 0.5rem;
      padding: 0.7rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    textarea {
      resize: vertical;
      min-height: 100px;
    }
    button {
      background: #643788;
      color: white;
      font-weight: bold;
      cursor: pointer;
      margin-top: 1.5rem;
      transition: background 0.3s ease;
    }
    button:hover {
      background: #4880c1;
    }
    .results {
      margin-top: 2rem;
      padding: 1rem;
      background: #f9fafb;
      border: 1px solid #ddd;
      border-radius: 8px;
    }
    .result-item {
      margin: 0.5rem 0;
    }
    footer {
      margin-top: 3rem;
      text-align: center;
      font-size: 0.9rem;
      color: #555;

    }
