  .form-section {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      max-width: 700px;
      margin: 3rem auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .form-section h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    label {
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: block;
      color: #333;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    textarea,
    select {
      padding: 0.75rem 1rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      width: 100%;
      font-size: 1rem;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    button[type="submit"] {
      background-color: #0066cc;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .upload-text {
      font-size: 14px;
      color: rgb(109, 107, 107);
    }

    button[type="submit"]:hover {
      background-color: #004c99;
    }